Skip to content

Commit 0496aee

Browse files
authored
Create makefile.yml
1 parent fa6153a commit 0496aee

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/makefile.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Makefile CI
2+
3+
env:
4+
DST: NoPhoneSpam_blacklist.txt
5+
6+
7+
on:
8+
push:
9+
branches: [ "master" ]
10+
pull_request:
11+
branches: [ "master" ]
12+
13+
jobs:
14+
build:
15+
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
- name: Make
22+
run: make
23+
24+
- uses: actions/upload-artifact@v4
25+
with:
26+
name: blacklist
27+
path: NoPhoneSpam_blacklist.txt

0 commit comments

Comments
 (0)