ntfy/.github/workflows/test.yaml

23 lines
638 B
YAML
Raw Normal View History

2021-12-08 05:50:48 +13:00
name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
2021-12-08 06:23:42 +13:00
go-version: '1.17.x'
2021-12-08 05:50:48 +13:00
- name: Checkout code
uses: actions/checkout@v2
2021-12-08 06:23:42 +13:00
- name: Install dependencies
run: sudo apt update && sudo apt install -y python3-pip
2021-12-08 07:37:01 +13:00
- name: Build docs (required for tests)
2021-12-08 06:23:42 +13:00
run: make docs
2021-12-08 05:50:48 +13:00
- name: Run tests, formatting, vetting and linting
run: make check
2021-12-08 06:23:42 +13:00
- name: Run coverage
run: make coverage
# - name: Upload coverage to codecov.io
# run: make coverage-upload