mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-07-27 19:57:11 +00:00
22 lines
342 B
YAML
22 lines
342 B
YAML
name: Coverage
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '18.x'
|
|
- uses: actions/checkout@v3
|
|
- run: yarn install
|
|
- run: yarn coverage
|
|
- uses: codecov/codecov-action@v5
|
|
with:
|
|
directory: coverage
|