diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0149c74..12201e3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,6 +30,10 @@ jobs: working-directory: ./lib run: nargo test + - name: Run example project + working-directory: ./example + run: nargo execute + format: runs-on: ubuntu-latest steps: @@ -45,6 +49,10 @@ jobs: working-directory: ./lib run: nargo fmt --check + - name: Run formatter on example + working-directory: ./example + run: nargo fmt --check + # This is a job which depends on all test jobs and reports the overall status. # This allows us to add/remove test jobs without having to update the required workflows. tests-end: