Skip to content

Commit

Permalink
GitHub Actions: improve selected list of Go versions
Browse files Browse the repository at this point in the history
- reverse list of Go versions to put the most recent at the top to get
  results earlier
- use symbolic names 'stable', 'oldstable' for the 2 latest
- add missing Go 1.15
  • Loading branch information
dolmen committed Mar 28, 2024
1 parent 3cc19e9 commit 001f737
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@ jobs:
strategy:
matrix:
go:
- '1.12'
- '1.13'
- '1.14'
- '1.16'
- '1.17'
- '1.18'
- '1.19'
- 'stable'
- 'oldstable'
- '1.20'
- '1.21'
- '1.22'
- '1.19'
- '1.18'
- '1.17'
- '1.16'
- '1.15'
- '1.14'
- '1.13'
- '1.12'

steps:
- name: Check out code
Expand Down

0 comments on commit 001f737

Please sign in to comment.