Bump actions/checkout from 4.1.1 to 4.1.2 #49
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: | |
branches: | |
- main | |
paths-ignore: | |
- README.md | |
- docs/** | |
jobs: | |
test: | |
name: Go ${{ matrix.go-version }} (${{ matrix.platform }}) | |
runs-on: ${{ matrix.platform }} | |
permissions: | |
contents: read | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: [1.19.x, 1.20.x] | |
platform: [ubuntu-latest] | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- name: Run mod tidy | |
run: go mod tidy | |
- name: Run vet | |
run: go vet ./... | |
- name: Run fmt | |
run: go fmt ./... | |
- name: Check if directory is clean | |
run: git diff --exit-code | |
- name: Import test key | |
run: gpg --import sops_functional_tests_key.asc | |
- name: Run tests | |
run: go test -v -race ./... | |
- name: Run main.go test1 | |
run: go run main.go test1 |