Skip to content

Commit

Permalink
Upgrade actions
Browse files Browse the repository at this point in the history
  • Loading branch information
roivaz committed May 6, 2024
1 parent b7daf7b commit 795c90d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 44 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/test-e2e.yaml

This file was deleted.

26 changes: 7 additions & 19 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,19 @@ on:
- main
jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: "1.21"

- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-

- uses: actions/cache@v2
with:
path: ./testbin
key: ${{ runner.os }}-testbin

- uses: actions/cache@v2
with:
path: ./bin
key: ${{ runner.os }}-bin

- name: Run tests
run: |
make test
- name: Run e2e tests
run: |
make test-e2e

0 comments on commit 795c90d

Please sign in to comment.