Remove WoC console.log #3714
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
on: | |
push: | |
workflow_call: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ["windows-latest", "ubuntu-latest", "macos-latest"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: installing dependencies | |
uses: ./.github/actions/install | |
with: | |
os: ${{ matrix.os }} | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- run: task test-coverage | |
- uses: codecov/codecov-action@v3 | |
with: | |
files: coverage.coverprofile |