13 lines
210 B
YAML
13 lines
210 B
YAML
name: test
|
|
run-name: ${{ gitea.actor }} is running tests
|
|
on:
|
|
push:
|
|
branchs: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: host
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: scripts/run-end-to-end-tests
|