enbas/.forgejo/workflows/Tests.yaml

24 lines
422 B
YAML
Raw Normal View History

2024-08-17 16:35:27 +01:00
---
name: Tests
on:
pull_request:
types:
- opened
- synchronize
jobs:
test:
2024-08-17 19:00:52 +01:00
if: ${{ ! github.event.pull_request.draft }}
2024-08-17 16:35:27 +01:00
runs-on: docker
steps:
- name: Checkout Repository
uses: https://code.forgejo.org/actions/checkout@v4
- name: Test
uses: ./.forgejo/actions/mage
2024-08-17 18:17:44 +01:00
with:
target: test
env:
ENBAS_TEST_VERBOSE: "1"
ENBAS_TEST_COVER: "1"