Skip to content

Bump softprops/action-gh-release from 3.0.2 to 3.0.3 #4

Bump softprops/action-gh-release from 3.0.2 to 3.0.3

Bump softprops/action-gh-release from 3.0.2 to 3.0.3 #4

Workflow file for this run

# Continuous integration: build, vet, and test on every push to main and on PRs.
# This is what powers the "CI passing" badge in the README. (The separate
# release.yml runs only on version tags.)
name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out source
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... -cover