Skip to content

Bump actions/checkout from 2.7.0 to 4.1.7 (#27) #73

Bump actions/checkout from 2.7.0 to 4.1.7 (#27)

Bump actions/checkout from 2.7.0 to 4.1.7 (#27) #73

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v2
- name: Set up Docker
uses: docker/setup-buildx-action@4fd812986e6c8c2a69e18311145f9371337f27d4 # v3.4.0
- name: Set up Go
uses: actions/setup-go@bfdd3570ce990073878bf10f6b2d79082de49492 # v2
with:
go-version: '1.22.5'
- name: Build
run: make build
- name: Docker
run: make docker-build
- name: Test
run: make test