Skip to content

Commit 2ef5b29

Browse files
Merge pull request #902 from robertbaldyga/master-build-status
Introduce master build status workflow
2 parents 36cc8c1 + 78dcc12 commit 2ef5b29

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed
12 KB
Binary file not shown.

.github/workflows/build-master.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Build Status
2+
permissions:
3+
contents: read
4+
pull-requests: read
5+
on:
6+
push:
7+
branches:
8+
- master
9+
jobs:
10+
build:
11+
name: Build Status
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: 'Build OCF'
16+
run: cd tests/build; make
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: build test
1+
name: Build test
22
permissions:
33
contents: read
44
pull-requests: read

0 commit comments

Comments
 (0)