Files
gotenberg/.github/workflows/continuous-integration-workflow.yml
2019-08-20 12:23:25 +02:00

12 lines
338 B
YAML

name: Gotenberg continuous integration
on: [push, pull_request]
jobs:
tests:
name: Lint, tests and code coverage
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- run: make lint
- run: make tests CODE_COVERAGE=1
- run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }}