From 0c61f6fe591b42f0e9785c4338ccfdcdd7c1f22e Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Sat, 30 Nov 2024 18:36:26 -0800 Subject: [PATCH] workflow --- .github/workflows/trask.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/trask.yml diff --git a/.github/workflows/trask.yml b/.github/workflows/trask.yml new file mode 100644 index 0000000000..587445c604 --- /dev/null +++ b/.github/workflows/trask.yml @@ -0,0 +1,24 @@ +name: Trask +on: + workflow_dispatch: + push: + branches: + - root-path-support-both-options-at-the-same-time + +env: + CARGO_TERM_COLOR: always + CARGO_INCREMENTAL: 0 + RUSTFLAGS: -D warnings + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - uses: taiki-e/install-action@nextest + - uses: Swatinem/rust-cache@v2 + - name: Compile + run: cargo check --locked + - name: Test + run: make test