enbas/.forgejo/workflows/Tests.yaml
Dan Anglin a52f2c6545
All checks were successful
Tests / test (pull_request) Has been skipped
try skipping job on draft PRs
2024-08-17 19:00:52 +01:00

23 lines
422 B
YAML

---
name: Tests
on:
pull_request:
types:
- opened
- synchronize
jobs:
test:
if: ${{ ! github.event.pull_request.draft }}
runs-on: docker
steps:
- name: Checkout Repository
uses: https://code.forgejo.org/actions/checkout@v4
- name: Test
uses: ./.forgejo/actions/mage
with:
target: test
env:
ENBAS_TEST_VERBOSE: "1"
ENBAS_TEST_COVER: "1"