Skip to content

Commit

Permalink
GitHub Actions Update: Run tests on macOS, deprecate Go v1.15 and Go …
Browse files Browse the repository at this point in the history
…v1.16, introduce Go v1.18, run CI every night (#449)

* GitHub Actions: Run test on macOS, deprecate Go v1.15 and introduce Go
v1.18

* GitHub Actions: Run CI every night and being able to run it on click
  • Loading branch information
andygrunwald committed Apr 1, 2022
1 parent b672da2 commit f386add
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@ on:
branches:
- master
pull_request:
workflow_dispatch:
schedule:
- cron: "5 1 * * *"

jobs:
test:
name: Test and lint
strategy:
fail-fast: false
matrix:
go-version: [1.15.x, 1.16.x, 1.17.x]
platform: [ubuntu-latest, windows-latest]
go-version: [ '1.18', '1.17' ]
os: ["windows-latest", "ubuntu-latest", "macOS-latest"]
runs-on: ${{ matrix.platform }}

steps:
Expand Down

0 comments on commit f386add

Please sign in to comment.