use coverage to run in ci and test for local testing development #65
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: Run CI Tests | |
on: push | |
jobs: | |
run-ci-tests: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install taskfile | |
run: | | |
sudo snap install task --classic | |
- id: run-unit-tests | |
name: Run unit tests | |
run: task install && task test |