Release 0.24.0 #102
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: ci | |
on: [push, pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: ["2.0.X", "2.1.X", canary] | |
steps: | |
- name: clone repository | |
uses: actions/checkout@v4 | |
- name: install deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: ${{ matrix.version }} | |
- name: run checks | |
run: deno task check | |
- name: run tests | |
run: deno task test:ci | |
- name: generate coverage report | |
run: deno task coverage | |
- name: upload coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./cov.lcov | |
token: ${{ secrets.CODECOV_TOKEN }} |