hishtory/.github/workflows/go-test.yml

26 lines
532 B
YAML
Raw Normal View History

name: Tests
2022-04-09 20:56:25 +02:00
on:
workflow_dispatch:
2022-04-09 20:56:25 +02:00
push:
2022-04-09 20:58:49 +02:00
branches: [ master ]
2022-04-09 20:56:25 +02:00
jobs:
test:
2022-04-17 19:50:37 +02:00
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
2022-04-09 20:56:25 +02:00
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Go test
2022-04-17 20:56:00 +02:00
if: ${{ !startsWith(github.event.head_commit.message, 'Release') }}
run: |
sudo apt-get update || true
sudo apt-get install -y zsh || true
make test