commit 692c28dc9f069399fbf0829d670644fd48bffed3 parent afbbd5fb52b2922c803eeb95aa91a85c98944420 Author: Sean Enck <sean@ttypty.com> Date: Mon, 11 Oct 2021 18:40:25 -0400 change to ubuntu-based Diffstat:
| M | .github/workflows/main.yml | | | 20 | ++++++++++---------- |
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -1,21 +1,21 @@ name: "build" -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] +on: [push, pull_request] jobs: build: - runs-on: ubuntu-latest - container: - image: alpine:latest + strategy: + matrix: + go-version: [1.16.x] + os: [ubuntu-latest] + runs-on: ${{ matrix.os }} steps: + - uses: actions/setup-go@v2 + with: + go-version: ${{ matrix.go-version }} - uses: actions/checkout@v2 - - name: "setup deps" - run: "apk add make bash git go" - name: "configure" run: "./configure" - name: "build" run: make +