Skip to content

CI: check PRs #6

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
Feb 27, 2025
Merged
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
30 changes: 30 additions & 0 deletions .github/workflows/check-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Check PRs against the Bikeshed spec

on:
# Runs on PRs targeting the default branch
pull_request:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
pr:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build spec
run: |
echo "Installing bikeshed"
sudo apt install pipx
pipx install bikeshed
echo "Building spec"
bikeshed spec spec.bs
- name: Turtle validation
run: |
echo "Validating RDF syntax"
sudo apt install nodejs npm
npm install -g turtle-validator
ttl tss.ttl