From ad7b8d349ea929498c40dac7f0d5f73297e4a8bf Mon Sep 17 00:00:00 2001 From: Bartosz Nowak Date: Sun, 21 Apr 2024 11:27:52 +0200 Subject: [PATCH] ci fix --- .github/workflows/test.yaml | 23 ++++++----------------- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index fe4edab..ce9ef7b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -5,7 +5,7 @@ on: pull_request: jobs: - setup: + test: runs-on: ubuntu-latest steps: - name: Checkout repository @@ -25,28 +25,17 @@ jobs: with: python-version: '3.9' - - name: Provision Environment - run: python install.py - - name: Format code run: cargo fmt --check + - name: Provision Environment + run: python install.py + - name: Build run: cargo build - - tests: - needs: setup - runs-on: ubuntu-latest - steps: + - name: Run cargo tests run: cargo test - name: Run snforge tests - run: snforge test - - full_tests: - needs: setup - runs-on: ubuntu-latest - steps: - - name: Run cargo full_tests - run: cargo test --features full_test \ No newline at end of file + run: snforge test \ No newline at end of file