mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-10-31 17:11:13 +01:00
22 lines
635 B
YAML
22 lines
635 B
YAML
name: test
|
|
on: [push, pull_request]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: '1.17.x'
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Install dependencies
|
|
run: sudo apt update && sudo apt install -y python3-pip
|
|
- name: Build docs (required for tests)
|
|
run: make docs
|
|
- name: Run tests, formatting, vetting and linting
|
|
run: make check
|
|
- name: Run coverage
|
|
run: make coverage
|
|
- name: Upload coverage to codecov.io
|
|
run: make coverage-upload
|