2021-08-20 01:32:01 +03:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-06-21 16:58:34 +03:00
|
|
|
branches: [main]
|
2021-08-20 01:32:01 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: Tests
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: denolib/setup-deno@v2
|
|
|
|
with:
|
|
|
|
deno-version: v1.x
|
2021-08-21 08:53:36 +03:00
|
|
|
- run: make ci
|
2021-08-20 01:32:01 +03:00
|
|
|
- name: Coveralls
|
|
|
|
uses: coverallsapp/github-action@master
|
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
2022-06-21 16:58:34 +03:00
|
|
|
path-to-lcov: cov_profile/cov.lcov
|