Put an anchor to the english readme at the beginning of the README.md #343
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.23.2' ] | |
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/* |