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.
1 parent b128453 commit 7de6a8eCopy full SHA for 7de6a8e
.github/workflows/ci.yml
@@ -11,7 +11,7 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - uses: actions/checkout@v4.2.2
+ - uses: actions/checkout@v3
15
16
- uses: actions/cache@v4.2.3
17
name: Cache installed packages
@@ -30,8 +30,14 @@ jobs:
30
version: 'stable'
31
32
- name: Install dependencies
33
- run: raco pkg install --auto --name algorithms
+ run: raco pkg install --auto --deps fail --name algorithms
34
35
- name: Run tests
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