Bump golang.org/x/net from 0.16.0 to 0.17.0 #351
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: Go CI | |
on: [push, pull_request] | |
jobs: | |
format: | |
if: github.event_name == 'push' | |
name: Format go sources | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4.1.0 | |
with: | |
go-version: "1.21" | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4.1.1 | |
- name: run go format | |
id: gofmt | |
run: | | |
gofmt -w . | |
echo "formatted_files=$(git status -s -uno | wc -l)" >> $GITHUB_OUTPUT | |
- name: push formatting fixes | |
if: steps.gofmt.outputs.formatted_files > 0 | |
run: | | |
git add -u | |
git config --global user.name "actions-go-bot" | |
git config --global user.email "actions-go@users.noreply.github.com" | |
git commit -m '[Auto] Fix source files formatting' -m 'This is an automatic commit standardizing go code formatting.' -m 'To avoid this commit, ensure to run `gofmt -w .` before committing any change' | |
git config --global credential.helper store | |
git push origin HEAD:${{ github.event.ref }} | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
coverageArgs: ["-coverprofile=coverage.txt -covermode=atomic"] | |
include: | |
- os: windows-latest | |
go-version: 1.21 | |
coverageArgs: "" | |
go-version: [1.21] | |
name: Build | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set up Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v4.1.0 | |
with: | |
go-version: ${{ matrix.go-version }} | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4.1.1 | |
- name: Get dependencies | |
run: go mod download | |
- name: run tests | |
id: tests | |
env: | |
# unauthenticated calls have lower limits than authenticated ones | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: go test -v -race ${{ matrix.coverageArgs }} ./... | |
- name: run tests with inputs | |
env: | |
ACTIONS_OUTPUT_SET: "true" | |
# unauthenticated calls have lower limits than authenticated ones | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
my_output: "${{ steps.tests.outputs.my-output }}" | |
run: go test -v -run TestOutputTasks ./core/... |