test.yml (362B)
1 --- 2 3 name: Test 4 on: 5 push: 6 branches: 7 - main 8 9 jobs: 10 test: 11 name: Test 12 runs-on: ubuntu-latest 13 steps: 14 - uses: actions/checkout@v4 15 16 - uses: finwo/dep@main 17 name: Install dep 18 19 - name: Install dependencies 20 shell: bash 21 run: dep install 22 23 - name: Run tests 24 shell: bash 25 run: make test