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.
2 parents 0b6305f + 41fb9c2 commit 0f71d9fCopy full SHA for 0f71d9f
.github/workflows/ci.yml
@@ -13,7 +13,7 @@ jobs:
13
steps:
14
- uses: actions/checkout@v3
15
16
- - uses: actions/cache@v2
+ - uses: actions/cache@v4.2.3
17
name: Cache installed packages
18
with:
19
path: |
@@ -30,7 +30,14 @@ jobs:
30
version: 'stable'
31
32
- name: Install dependencies
33
- run: raco pkg install --auto --dependencies fail
+ run: raco pkg install --auto --deps fail --name algorithms
34
35
- name: Run tests
36
- run: raco test .
+ 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