Skip to content

Commit 0f71d9f

Browse files
authored
👷 Merge pull request #35 from walking-octopus/ci
fix: CI
2 parents 0b6305f + 41fb9c2 commit 0f71d9f

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515

16-
- uses: actions/cache@v2
16+
- uses: actions/cache@v4.2.3
1717
name: Cache installed packages
1818
with:
1919
path: |
@@ -30,7 +30,14 @@ jobs:
3030
version: 'stable'
3131

3232
- name: Install dependencies
33-
run: raco pkg install --auto --dependencies fail
33+
run: raco pkg install --auto --deps fail --name algorithms
3434

3535
- name: Run tests
36-
run: raco test .
36+
run: raco test -x -p algorithms
37+
38+
# - name: Coverage report
39+
# if: success()
40+
# run: |
41+
# raco setup --check-pkg-deps --pkgs algorithms
42+
# raco pkg install --auto cover cover-coveralls
43+
# raco cover -b -f coveralls -d ${{ github.workspace }}/coverage .

0 commit comments

Comments
 (0)