Merge pull request #24 from TheAlgorithms/fr33m0nk/add-immutable-dyna… #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: upload_coverage_report | |
# yamllint disable-line rule:truthy | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
upload_coverage_report: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
- name: Setup clojure | |
uses: DeLaGuardo/[email protected] | |
with: | |
cli: "1.10.3.1029" | |
- name: Run tests | |
run: | | |
clojure -X:coverage | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
files: "target/coverage/codecov.json" | |
fail_ci_if_error: true | |
... |