Skip to content

Commit 5c0cc7b

Browse files
authored
Create blank.yml
1 parent 4b59ded commit 5c0cc7b

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/blank.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: rawhide-build
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
container: registry.fedoraproject.org/fedora:rawhide
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
17+
- name: getting envinronment info
18+
run: uname -a
19+
20+
- name: print fedora version
21+
run: cat /etc/fedora-release
22+
23+
- name: installing dependecies
24+
run: dnf -y install dnf-plugins-core python3-dnf-plugins-core; dnf -y builddep usbguard
25+
26+
- name: make
27+
run: make

0 commit comments

Comments
 (0)