Create makefile.yml #1
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
name: Makefile CI | ||
env: | ||
DST: NoPhoneSpam_blacklist.txt | ||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Make | ||
run: make | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
Check failure on line 25 in .github/workflows/makefile.yml GitHub Actions / Makefile CIInvalid workflow file
|
||
name: blacklist | ||
path: NoPhoneSpam_blacklist.txt |