web-crawler/.forgejo/workflows/Tests.yaml

24 lines
426 B
YAML
Raw Normal View History

---
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:
CRAWLER_TEST_COVER: "1"
CRAWLER_TEST_VERBOSE: "1"