Fix exception when trying to parse extended id3 v2.3 #263
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push | |
name: Eutherpe CI | |
jobs: | |
Linux: | |
env: | |
SKIP_UNSTABLE: true | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: [ '1.19' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-verson }} | |
- name: Run Eutherpe unit tests | |
shell: bash | |
run: | | |
cd src | |
go test -v internal/* |