From 04ecfb03a11207e30c2f5e518d87e0409d778721 Mon Sep 17 00:00:00 2001 From: Rafael Rivera Date: Mon, 5 Feb 2024 14:53:16 -0800 Subject: [PATCH] yml --- .github/workflows/features.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/features.yml diff --git a/.github/workflows/features.yml b/.github/workflows/features.yml new file mode 100644 index 0000000000..7a7e0c944e --- /dev/null +++ b/.github/workflows/features.yml @@ -0,0 +1,31 @@ +name: features + +on: + pull_request: + push: + paths-ignore: + - '.github/ISSUE_TEMPLATE/**' + branches: + - master + - features + +env: + RUSTFLAGS: -Dwarnings + +jobs: + index: + name: tool_features + runs-on: windows-2019 + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Update toolchain + run: rustup update --no-self-update stable && rustup default stable + - name: Run + run: cargo run -p tool_features + - name: Upload features index artifact + uses: actions/upload-artifact@v4 + with: + name: features-index + path: index.json + compression-level: 9