Skip to content

Commit

Permalink
CI: Update Go workflow (#147)
Browse files Browse the repository at this point in the history
* CI: run Go test on different systems

GH actions now runs our test job in the operating systems that we
compile binaries for.

* CI: run workflows on a cron schedule
  • Loading branch information
ctlong authored Mar 31, 2023
1 parent 5843448 commit 155e54e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@ on:
pull_request:
branches:
- main
schedule:
- cron: '40 1 * * 2'

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
Expand Down

0 comments on commit 155e54e

Please sign in to comment.