We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcc3076 commit 07fb6d9Copy full SHA for 07fb6d9
.github/workflows/test.yml
@@ -4,15 +4,15 @@ jobs:
4
test:
5
strategy:
6
matrix:
7
- go-version: [1.19.x]
8
- os: [ubuntu-latest]
+ go-version: [1.23.x]
+ os: [ubuntu-latest, macos-latest, windows-latest]
9
runs-on: ${{ matrix.os }}
10
steps:
11
+ - name: Checkout code
12
+ uses: actions/checkout@v4
13
- name: Install Go
- uses: actions/setup-go@v3
14
+ uses: actions/setup-go@v5
15
with:
16
go-version: ${{ matrix.go-version }}
- - name: Checkout code
- uses: actions/checkout@v3
17
- name: Test
18
run: go test
go.mod
@@ -1,3 +1,3 @@
1
module github.com/gen2brain/mpeg
2
3
-go 1.19
+go 1.23
0 commit comments