gator/.forgejo/workflows/workflow.yaml

24 lines
455 B
YAML
Raw Permalink Normal View History

2024-09-28 23:15:09 +01:00
---
name: Workflow
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: https://codeflow.dananglin.me.uk/actions/mage-ci@main
with:
target: test
env:
2024-09-28 23:24:44 +01:00
GATOR_TEST_VERBOSE: "1"
GATOR_TEST_COVER: "1"