Skip to content

Commit

Permalink
edit actions
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Jan 4, 2024
1 parent 9be6117 commit 3b761ae
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- go-version: 1.18.x
os: ubuntu-latest
- go-version: 1.19.x
os: ubuntu-latest
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand All @@ -27,6 +27,23 @@ jobs:

- name: Make all
run: make all

- name: Make Test
run: make test

e2e_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.17.x

- name: Make all
run: make all

- name: Make E2E Test
run: make test-e2e

0 comments on commit 3b761ae

Please sign in to comment.