Skip to content

Commit c63a1a9

Browse files
authored
Merge pull request #237 from maflcko/2509-ci-gha-dummy
ci: Add dummy GHA template
2 parents ca75c1d + 7264fbf commit c63a1a9

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Copyright (c) The Bitcoin Core developers
2+
# Distributed under the MIT software license, see the accompanying
3+
# file COPYING or https://opensource.org/license/mit.
4+
5+
name: CI
6+
on:
7+
push:
8+
pull_request:
9+
10+
concurrency:
11+
group: ${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
ci-matrix:
16+
name: ${{ matrix.name }}
17+
runs-on: ${{ matrix.runner }}
18+
19+
strategy:
20+
fail-fast: false
21+
matrix:
22+
include:
23+
- name: 'fuzz (dummy)'
24+
runner: 'ubuntu-latest'
25+
26+
steps:
27+
- name: Checkout Bitcoin Core
28+
uses: actions/checkout@v5
29+
with:
30+
repository: bitcoin/bitcoin
31+
fetch-depth: 1

0 commit comments

Comments
 (0)