Gamma optimizations and benchmarks (#69) #181
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: coverage | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: DeLaGuardo/setup-clojure@master | |
with: | |
cli: latest | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: adopt | |
java-version: 17 | |
- name: Cache m2 | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: m2-${{ hashFiles('deps.edn') }} | |
- name: Cache gitlibs | |
uses: actions/cache@v2 | |
with: | |
path: ~/.gitlibs | |
key: gitlibs-${{ hashFiles('deps.edn') }} | |
- name: Install dependencies | |
run: clojure -P -M:test:nextjournal/clerk:coverage | |
- name: generate coverage report | |
run: | | |
CLOVERAGE_VERSION=1.2.4 clojure -M:test:nextjournal/clerk:coverage --codecov || : | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
fail_ci_if_error: false | |
files: ./target/coverage/codecov.json |