All checks were successful
Gitea build & Test. / docker (pull_request) Successful in 7s
19 lines
274 B
YAML
19 lines
274 B
YAML
name: Gitea build & Test.
|
|
run-name: ${{ gitea.actor }}
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- pre-prod
|
|
pull_request:
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build and test
|
|
run: make test
|