Skip to content

Commit

Permalink
Add integration tests as non-failing job
Browse files Browse the repository at this point in the history
  • Loading branch information
brysontyrrell committed Feb 13, 2024
1 parent 965aa2f commit e39f576
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/main_pr_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:
contents: read

jobs:
automated-tests:
setup-env:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -28,8 +28,20 @@ jobs:
- name: Install
run: make install

automated-tests:
needs: setup-env
runs-on: ubuntu-latest
steps:
- name: Lint Checker
run: make lint

- name: Tests
run: make test

exp-integration-tests:
needs: setup-env
continue-on-error: true
runs-on: ubuntu-latest
steps:
- name: Run Integration Tests
run: make test-all

0 comments on commit e39f576

Please sign in to comment.