Skip to content

馃敿 Update dependency go to v1.21.6 #50

馃敿 Update dependency go to v1.21.6

馃敿 Update dependency go to v1.21.6 #50

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@v5
with:
go-version-file: go.mod
- name: Build
run: |
export GOAMD64=v3
go build -v -trimpath -ldflags '-s -w' ./cmd/cubic-rce-bot
- name: Test
run: go test -v ./...
- name: Upload Binaries
uses: actions/upload-artifact@v4
with:
name: cubic-rce-bot-${{ github.sha }}-${{ matrix.os }}-x86-64-v3
path: cubic-rce-bot*