Skip to content

Bump golang from 1.20-alpine to 1.21-alpine in /production #1341

Bump golang from 1.20-alpine to 1.21-alpine in /production

Bump golang from 1.20-alpine to 1.21-alpine in /production #1341

Workflow file for this run

---
name: Tests
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.19]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: |
go get -v -t -d ./...
working-directory: backend
- name: Test
run: go test -v ./...
working-directory: backend