Skip to content

fix: CI #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: actions/cache@v2
- uses: actions/cache@v4.2.3
name: Cache installed packages
with:
path: |
Expand All @@ -30,7 +30,14 @@ jobs:
version: 'stable'

- name: Install dependencies
run: raco pkg install --auto --dependencies fail
run: raco pkg install --auto --deps fail --name algorithms

- name: Run tests
run: raco test .
run: raco test -x -p algorithms

# - name: Coverage report
# if: success()
# run: |
# raco setup --check-pkg-deps --pkgs algorithms
# raco pkg install --auto cover cover-coveralls
# raco cover -b -f coveralls -d ${{ github.workspace }}/coverage .
Loading