chore: update way of passing token in codecov (#40) #54
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: Tests | |
on: | |
push: { branches: [main] } | |
pull_request: {} | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Deno environment | |
uses: denolib/[email protected] | |
- name: Code conventions | |
run: deno task lint | |
- name: Unit/Integration tests | |
run: deno task coverage | |
- name: Upload coverage to Codecov | |
run: curl -Os https://uploader.codecov.io/latest/linux/codecov && chmod +x codecov && ./codecov |