Skip to content

Commit

Permalink
enable caching in smoke
Browse files Browse the repository at this point in the history
  • Loading branch information
lestrrat committed Jan 12, 2021
1 parent 3b20588 commit 7c96015
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,21 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Cache Go modules
uses: actions/cache@v2
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install Go stable version
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Install jose
run: sudo apt-get install -y jose
run: sudo apt-get install -y --no-install-recommends jose
- run: make generate
- name: Run smoke tests
run: make smoke
Expand Down

0 comments on commit 7c96015

Please sign in to comment.