Skip to content

🔼 Update actions/checkout action to v4 #272

🔼 Update actions/checkout action to v4

🔼 Update actions/checkout action to v4 #272

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
pull_request:
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'docs/**'
jobs:
test:
name: Test
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Build
run: |
export GOAMD64=v3
go build -v -trimpath -ldflags '-s -w' ./cmd/swgp-go
- name: Test
run: go test -v -benchmem -bench . ./...
- name: Upload Binaries
uses: actions/upload-artifact@v3
with:
name: swgp-go-${{ github.sha }}-${{ matrix.os }}-x86-64-v3
path: swgp-go*