From 685d9607c817bb8a43132bde868bd6b0ed7d1f94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Sat, 21 May 2022 15:46:37 +0300 Subject: [PATCH] chore(ci): run test fixtures --- .github/workflows/ci.yml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 298d613..8f96818 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: branches: - master schedule: - - cron: "0 0 * * 0" + - cron: '0 0 * * 0' jobs: check: @@ -58,6 +58,30 @@ jobs: verbose: true token: ${{ secrets.CODECOV_TOKEN }} + fixtures: + name: Test fixtures + runs-on: ubuntu-20.04 + steps: + - name: Install Rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + profile: minimal + override: true + - name: Checkout the repository + uses: actions/checkout@master + - name: Build the project + uses: actions-rs/cargo@v1 + with: + command: build + args: --locked --verbose + - name: Run test fixtures + shell: bash + run: ./test-fixtures.sh + working-directory: fixtures + env: + DEBUG: true + clippy: name: Lints runs-on: ubuntu-20.04