From e7cf45b261fea483f005ae6d2aa8cb5df472336e Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov <amdmi3@amdmi3.ru> Date: Fri, 19 Jan 2024 21:50:04 +0300 Subject: [PATCH] Test on multiple rust versions --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e648caf..3d21074 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,8 +3,17 @@ on: [ push, pull_request ] jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + include: + - { rust: nigtly } + - { rust: stable } steps: - uses: actions/checkout@v3 + - uses: actions-rs/toolchain@v1 + with: + toolchain: ${{ matrix.rust }} + override: true - name: Build run: cargo build - name: Test