Skip to content
Open
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
26 changes: 26 additions & 0 deletions .github/workflows/build-lightweight.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "build"

on:
pull_request:
paths:
- ".github/workflows/build-lightweight.yaml"
- "README.md"
- "docs/**/*"
- "*.md"
push:
paths:
- ".github/workflows/build-lightweight.yaml"
- "README.md"
- "docs/**/*"
- "*.md"

concurrency:
group: "build-lightweight-${{github.ref}}"
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest

Check failure on line 23 in .github/workflows/build-lightweight.yaml

View workflow job for this annotation

GitHub Actions / lint (ubuntu-24.04)

23:14 [quoted-strings] string value is not quoted with double quotes
steps:
- name: "Non-code changes only"
run: echo "Only non-code changes detected, skipping build"

Check failure on line 26 in .github/workflows/build-lightweight.yaml

View workflow job for this annotation

GitHub Actions / lint (ubuntu-24.04)

26:14 [quoted-strings] string value is not quoted with double quotes
Loading