pokedex/.forgejo/workflows/workflow.yaml

27 lines
520 B
YAML
Raw Permalink Normal View History

2024-08-28 12:36:14 +01:00
---
name: Workflow
on:
pull_request:
types:
- opened
- synchronize
jobs:
test:
if: ${{ ! github.event.pull_request.draft }}
runs-on: docker
env:
GO_TEST_VERBOSE: "1"
GO_TEST_COVER: "1"
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:
POKEDEX_TEST_VERBOSE: "1"
POKEDEX_TEST_COVER: "1"