ntfy/.github/workflows/test.yaml

29 lines
817 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'
2022-03-06 15:15:40 +13:00
- name: Install node
uses: actions/setup-node@v2
with:
node-version: '16'
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
2021-12-23 11:45:19 +13:00
run: sudo apt update && sudo apt install -y python3-pip curl
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
2022-03-06 15:15:40 +13:00
- name: Build web app (required for tests)
run: make web
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
2021-12-08 08:50:46 +13:00
- name: Upload coverage to codecov.io
run: make coverage-upload