Skip to content

build(deps): bump docker/login-action from 2 to 3 #416

build(deps): bump docker/login-action from 2 to 3

build(deps): bump docker/login-action from 2 to 3 #416

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: ${{ matrix.go-version }}
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.20"]
defaults:
run:
working-directory: main
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
path: main
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
check-latest: true
cache: true
cache-dependency-path: "main/go.sum"
- name: Test packages
run: make test-short
- name: Build artifacts
run: make build