ntfy/.github/workflows/test.yaml

23 lines
640 B
YAML
Raw Normal View History

2021-12-07 17:50:48 +01: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-07 18:23:42 +01:00
go-version: '1.17.x'
2021-12-07 17:50:48 +01:00
- name: Checkout code
uses: actions/checkout@v2
2021-12-07 18:23:42 +01:00
- name: Install dependencies
2021-12-22 23:45:19 +01:00
run: sudo apt update && sudo apt install -y python3-pip curl
2021-12-07 19:37:01 +01:00
- name: Build docs (required for tests)
2021-12-07 18:23:42 +01:00
run: make docs
2021-12-07 17:50:48 +01:00
- name: Run tests, formatting, vetting and linting
run: make check
2021-12-07 18:23:42 +01:00
- name: Run coverage
run: make coverage
2021-12-07 20:50:46 +01:00
- name: Upload coverage to codecov.io
run: make coverage-upload