From a37b780a6e57bc749e2e6f09409c8621a64f91cf Mon Sep 17 00:00:00 2001 From: Andrew Wells Date: Wed, 19 Apr 2023 09:14:34 -0700 Subject: [PATCH 1/2] update CI --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b83a50a..0d9f0cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,9 @@ jobs: steps: - uses: actions/checkout@v3 - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - - run: cargo build --verbose + - run: cargo fmt --all --check + - run: cargo --verbose rustc -- -D warnings - run: cargo test --verbose + - run: cargo bench --no-run From 112ecba813c59cb13e9a1998b56191d3b4742230 Mon Sep 17 00:00:00 2001 From: Andrew Wells Date: Wed, 19 Apr 2023 09:22:49 -0700 Subject: [PATCH 2/2] remove beta and nightly --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d9f0cf..15909e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,8 +15,6 @@ jobs: matrix: toolchain: - stable - - beta - - nightly steps: - uses: actions/checkout@v3 - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}