17 lines
281 B
YAML
17 lines
281 B
YAML
---
|
|
name: Gitea Test.
|
|
run-name: ${{ gitea.actor }}
|
|
on:
|
|
push:
|
|
branches: [main, pre-prod]
|
|
pull_request:
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: lint
|
|
run: make lint
|
|
- name: test
|
|
run: make test
|