Skip to content

Merge pull request #4 from A11Might/feat/parse_level #6

Merge pull request #4 from A11Might/feat/parse_level

Merge pull request #4 from A11Might/feat/parse_level #6

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: go test
on:
# run on every push on the master branch
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: run test
run: go test . -gcflags="all=-N -l" -json > TestResults.json
- name: upload Go test results
uses: actions/upload-artifact@v4
with:
name: Go-results
path: TestResults.json