mirror of
https://github.com/Dadido3/noita-mapcap.git
synced 2024-11-18 17:17:31 +00:00
David Vogel
23ca6ac8c3
- Github checkout action doesn't load submodules by default, enable that - Update README.md
29 lines
539 B
YAML
29 lines
539 B
YAML
name: Build and test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Build and test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ^1.18
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Build stitch tool
|
|
run: go build -v .
|
|
working-directory: ./bin/stitch
|
|
|
|
- name: Test stitch tool
|
|
run: go test -v .
|
|
working-directory: ./bin/stitch
|