Skip to content

Commit

Permalink
- add ci check for goal init
Browse files Browse the repository at this point in the history
  • Loading branch information
aaabramov committed Nov 9, 2021
1 parent 309376a commit 29213d5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/init.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Check 'goal init'
on: [ push, pull_request ]
jobs:
check:
strategy:
matrix:
go-version: [ 1.17.x ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v2

- name: Build
run: go build

- name: Check 'goal init'
run: ./goal init && ./goal

0 comments on commit 29213d5

Please sign in to comment.