Skip to content

Merge pull request #11 from alliedmodders/revert-10-patch-1 #19

Merge pull request #11 from alliedmodders/revert-10-patch-1

Merge pull request #11 from alliedmodders/revert-10-patch-1 #19

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Make Output Directory
run: mkdir bin
- name: Build
run: go build -v -o ./bin ./...
- name: Test
run: go test -v ./...
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}
path: ./bin
if-no-files-found: error