Skip to content

Commit

Permalink
chore(github): add workflow test (#370)
Browse files Browse the repository at this point in the history
Add `libbpfgo-unit-tests` to the workflow test.
  • Loading branch information
geyslan committed Aug 24, 2023
1 parent 7f95825 commit 99b7ef7
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/pr.yaml
Expand Up @@ -52,8 +52,24 @@ jobs:
run: |
make lint-check
shell: bash
unit-tests:
name: Unit Tests
libbpfgo-unit-tests:
name: libbpfgo Unit Tests
runs-on: ubuntu-22.04
strategy:
matrix:
go-version: [ 1.18, 1.19, '1.20', 'stable' ]
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install Dependencies
uses: ./.github/actions/build-dependencies
with:
go-version: ${{ matrix.go-version }}
- name: Test libbpfgo
run: |
make libbpfgo-static-test
helpers-unit-tests:
name: Helpers Unit Tests
runs-on: ubuntu-22.04
strategy:
matrix:
Expand Down

0 comments on commit 99b7ef7

Please sign in to comment.