Skip to content

GHA: Bump actions/checkout from 4.1.1 to 4.1.3 in /.github/workflows #629

GHA: Bump actions/checkout from 4.1.1 to 4.1.3 in /.github/workflows

GHA: Bump actions/checkout from 4.1.1 to 4.1.3 in /.github/workflows #629

Workflow file for this run

name: fpl
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
go-version: [1.18.x, 1.19.x]
runs-on: ubuntu-latest
name: Build
env:
GOPATH: /home/runner/go
steps:
- name: Set up Go
uses: actions/setup-go@v5.0.0
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4.1.3
- name: Get dependencies
run: |
PATH=$(go env GOPATH)/bin:$PATH
make install
- name: Spellcheck
run: |
make spell-check
- name: Lint
run: |
make lint
- name: Vet
run: |
make vet
- name: Security
run: |
make security
- name: Build
run: |
make build
- name: Test
run: |
make test