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
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,22 @@ name: Test

on:
push:
# Only run the (slow) full tests if FORM source code, tests or this file change.
# The "deploy" workflow still compiles FORM and runs basic `make check` unconditionally.
paths:
- "sources/**"
- "check/**"
- ".github/workflows/test.yml"
pull_request:
paths:
- "sources/**"
- "check/**"
- ".github/workflows/test.yml"
workflow_dispatch:
paths:
- "sources/**"
- "check/**"
- ".github/workflows/test.yml"

env:
FORM_IGNORE_DEPRECATION: 1
Expand Down
Loading