noita-mapcap/.github/workflows/build-test.yml

26 lines
434 B
YAML
Raw Normal View History

name: Build and test
on: [push, pull_request]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
2022-07-16 15:34:01 +00:00
run: go build -v ./bin/stitch
- name: Test
2022-07-16 15:34:01 +00:00
run: go test -v ./bin/stitch