Skip to content

Commit

Permalink
GitHub Actions: Run Go CI on both Ubuntu and Windows (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkern authored May 4, 2021
1 parent 4bd1bc4 commit cdc1cd4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,19 @@ name: Go

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]
schedule:
- cron: '0 0 * * 0' # weekly

jobs:

build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2

Expand Down

0 comments on commit cdc1cd4

Please sign in to comment.