Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
# Execute the checks inside the contianer instead the VM.
container: golangci/golangci-lint:v1.41.1-alpine
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: ./scripts/check/check.sh

test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
with:
go-version: 1.16
Expand All @@ -37,7 +37,7 @@ jobs:
name: Release image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build image
run: make build-image
- name: Docker login
Expand All @@ -59,7 +59,7 @@ jobs:
# Only run in master and when has a tag.
steps:
- run: echo "VERSION=${GITHUB_REF#refs/*/}" >> ${GITHUB_ENV} # Sets VERSION env var.
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build image
run: make build-image
- name: Docker login
Expand Down