🌱 Bump docker/metadata-action from f7b4ed12385588c3f9bc252f0a2b520d83b52d48 to a64d0487d7069df33b279515d35d60fa80e2ea62 #111
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ '*' ] | |
jobs: | |
go-build: | |
name: Backend Build | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: . | |
strategy: | |
matrix: | |
goVer: [1.20] | |
steps: | |
- name: Set up Go ${{ matrix.goVer }} | |
uses: actions/setup-go@v1 | |
with: | |
go-version: ${{ matrix.goVer }} | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
go get gopkg.in/check.v1 | |
go get gopkg.in/check.v1 | |
go mod tidy | |
- name: Test | |
run: | | |
go test -v ./... | |
- name: Build | |
run: | | |
go build -v ./... |