We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dcb33b commit b0e41c4Copy full SHA for b0e41c4
.github/workflows/test.yml
@@ -1,8 +1,8 @@
1
on:
2
push:
3
- branches: [ main ]
+ branches: [main]
4
pull_request:
5
6
7
jobs:
8
test:
@@ -18,7 +18,7 @@ jobs:
18
- name: Setup Go
19
uses: actions/setup-go@v4
20
with:
21
- go-version: '1.24'
+ go-version: "1.24"
22
23
- name: Build shared library
24
run: make build
@@ -30,7 +30,7 @@ jobs:
30
run: composer install --prefer-dist --no-interaction
31
32
- run: |
33
- git clone --depth 1 https://github.com/italia/publiccode-parser-go.git /tmp
34
- mv /tmp/testdata/* tests/fixtures/testdata/
+ git clone --depth 1 https://github.com/italia/publiccode-parser-go.git /tmp/publiccode-parser-go
+ mv /tmp/publiccode-parser-go/testdata/* tests/fixtures/testdata/
35
36
- run: composer run test
0 commit comments