Skip to content

Commit

Permalink
Add test to release
Browse files Browse the repository at this point in the history
  • Loading branch information
bbedward committed Jun 24, 2024
1 parent 2885de8 commit b55595e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Install ocl-icd-opencl-dev
run: apt-get update && apt-get install -y ocl-icd-opencl-dev

- name: Cache Go modules
uses: actions/cache@v3
with:
Expand All @@ -35,6 +38,10 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
- name: Run Tests
run: |
go test -v -parallel 1 $(go list -f '{{.Dir}}/...' -m | xargs)
- name: Build Docker image
run: |
docker build --build-arg VERSION=${{ env.VERSION }} -t bananocoin/pippin:${{ env.VERSION }} -t bananocoin/pippin:latest .
Expand Down

0 comments on commit b55595e

Please sign in to comment.