Skip to content

Reorganise workflows #1810

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
jobs:
# Run "pre-commit run --all-files"
pre-commit:
name: Run pre-commit checks
runs-on: ubuntu-latest
timeout-minutes: 5

Expand All @@ -20,6 +21,7 @@ jobs:
pre-commit run --all-files --hook-stage manual || (git diff; false)

mkdocs:
name: Check docs
runs-on: ubuntu-latest
timeout-minutes: 5

Expand Down
32 changes: 0 additions & 32 deletions .github/workflows/unified-test-format-schema-check.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,12 +1,39 @@
name: Check if all JSON test files are up-to-date
name: Unified Tests

on:
push:
branches: [master]
pull_request: ~

jobs:
build:
schema-check:
name: Check unified test format files against schema

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Set up npm
uses: actions/setup-node@v2
with:
node-version: lts/*
- name: Install dependencies
run: |
npm install -g ajv-cli js-yaml
- name: Check unified format test files against schema
working-directory: source/unified-test-format/tests
run: make
- name: Check all unified tests schema version is valid
run: bash .github/workflows/check_schema_version.sh
- name: Check schema-latest.json has been updated
run: bash .github/workflows/check-schema-latest.sh

json-check:
name: Check if all JSON test files are up-to-date

runs-on: ubuntu-latest

Expand Down
Loading