ntfy/.github/workflows/test.yaml

25 lines
721 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
run: sudo apt update && sudo apt install -y python3-pip
- name: Install mkdocs
run: sudo pip3 install mkdocs mkdocs-material mkdocs-minify-plugin
- name: Build docs
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
# - name: Upload coverage to codecov.io
# run: make coverage-upload