-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dummy workflow to bypass required checks
- Loading branch information
1 parent
c104664
commit b92564c
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Workaround to skip the "required" check when jobs are skipped | ||
name: '*CI Skipped*' | ||
|
||
on: | ||
pull_request: | ||
branches: [ '*' ] | ||
paths: | ||
- '.github/**' | ||
- 'docs/**' | ||
- '.all-contributorsrc' | ||
- 'README.md' | ||
- 'LICENSE' | ||
- 'metrics/**' | ||
|
||
jobs: | ||
compile-native: | ||
name: Build native libraries | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Skipped | ||
run: echo "Skipped" | ||
|
||
build: | ||
name: Build project | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Skipped | ||
run: echo "Skipped" | ||
|
||
smoke: | ||
name: Start and stop the node | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Skipped | ||
run: echo "Skipped" | ||
|
||
test: | ||
name: Test | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Skipped | ||
run: echo "Skipped" | ||
|
||
lint: | ||
name: Lint | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Skipped | ||
run: echo "Skipped" | ||
|
||
spectests: | ||
name: Run spec-tests | ||
strategy: | ||
matrix: | ||
config: ["minimal", "general", "mainnet"] | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Skipped | ||
run: echo "Skipped" |