Fix deep-merge with nil arguments and values #5
Workflow file for this run
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 ] | |
jobs: | |
coverage: | |
runs-on: [ Ubuntu-22.04 ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Openjdk | |
uses: actions/setup-java@v4 | |
with: | |
distribution: corretto | |
java-version: 17 | |
- name: Show java version | |
run: | | |
java -Xmx32m -version | |
- name: Show javac version | |
run: | | |
javac -J-Xmx32m -version | |
- name: Install leiningen | |
uses: DeLaGuardo/[email protected] | |
with: | |
lein: 2.11.2 | |
- name: Show leiningen version | |
run: | | |
lein version | |
- name: Run cloverage | |
run: | | |
lein cloverage --codecov | |
- name: Push cloverage result | |
run: | | |
bash <(curl -s https://codecov.io./bash) -f target/coverage/codecov.json |