Bump cipher-base from 1.0.4 to 1.0.6 #92
Workflow file for this run
This file contains hidden or 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: build-and-test | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'showcase/**' | |
| - 'doc/**' | |
| workflow_dispatch: | |
| jobs: | |
| format-check: | |
| name: 'Format Check' | |
| uses: ./.github/workflows/setup-and-run-script.yml | |
| with: | |
| script: make fmt-check | |
| lint: | |
| name: 'Lint' | |
| uses: ./.github/workflows/setup-and-run-script.yml | |
| with: | |
| script: make lint | |
| unit-test: | |
| name: 'Unit Tests' | |
| uses: ./.github/workflows/setup-and-run-script.yml | |
| with: | |
| script: make test | |
| test-cljs: | |
| name: 'Unit Tests for cljs' | |
| uses: ./.github/workflows/setup-and-run-script.yml | |
| with: | |
| script: make test-cljs |