Skip to content

make-go-github-file.yaml: cmd/github.go@0.2.2 (#85) #105

make-go-github-file.yaml: cmd/github.go@0.2.2 (#85)

make-go-github-file.yaml: cmd/github.go@0.2.2 (#85) #105

Workflow file for this run

name: go test linux
on: [push]
permissions:
contents: read
jobs:
go-test-linux:
name: "go test with OS: ${{ matrix.os }}; Go: ${{ matrix.go }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ["1.21"]
os: [ubuntu-latest]
steps:
- name: checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: run go test
run: go test -v -p 1 ./...