mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00

* ci: split up workflows * ci: tweaks and housekeeping * ci: additional comments and requested changes * ci: additional comments * chore: clean up .gitignore * ci: CTH testing on PRs + reusable * ci: allow failure on job instead of command * ci: remove npm-test dependency for CTH * ci: fix branch for scheduled run of CTH * ci: add concurrency group for PRs
19 lines
319 B
YAML
19 lines
319 B
YAML
name: Conformance test harness
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '23 5 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
conformance:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
branch:
|
|
- 'main'
|
|
- 'versions/6.0.0'
|
|
uses: ./.github/workflows/cth-test.yml
|
|
with:
|
|
branch: ${{ matrix.branch }}
|