3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-09-05 01:27:43 +00:00

Revert "Workflow adjustments"

This commit is contained in:
Jannis Harder 2025-08-18 20:39:00 +02:00 committed by GitHub
parent 7c409e2d5a
commit b640a16b07
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 28 additions and 161 deletions

View file

@ -1,14 +1,6 @@
name: Build and run tests with Verific (Linux)
on:
# always test main
push:
branches:
- main
# test PRs
pull_request:
# allow triggering tests, ignores skip check
workflow_dispatch:
on: [push, pull_request]
jobs:
pre-job:
@ -19,11 +11,11 @@ jobs:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
# don't run on documentation changes
paths_ignore: '["**/README.md", "docs/**", "guidelines/**"]'
# cancel previous builds if a new commit is pushed
# but never cancel main
cancel_others: ${{ github.ref != 'refs/heads/main' }}
cancel_others: 'true'
# only run on push *or* pull_request, not both
concurrent_skipping: 'same_content_newer'
test-verific:
needs: pre-job