Merge branch 'master' of github.com:kevin-valerio/go-arithmetic-panik #15
This file contains hidden or 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-panikint self-compile and test | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Go-Panikint compiler | |
run: | | |
cd src | |
./make.bash | |
- name: Run tests | |
run: | | |
cd tests | |
GOROOT=${{ github.workspace }} ${{ github.workspace }}/bin/go test -v . |