Skip to content

Switch go-snipeit from CampusTech fork to upstream michellepellon #2

Switch go-snipeit from CampusTech fork to upstream michellepellon

Switch go-snipeit from CampusTech fork to upstream michellepellon #2

Workflow file for this run

name: Test
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
concurrency:
group: test-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Test
run: go test -race -v ./...