Add Everything That Has Breath (Praise) #65
Workflow file for this run
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: build-dist | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: set up python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: get pyinstaller | |
run: sudo pip install pyinstaller | |
- name: checkout repo | |
uses: actions/checkout@v2 | |
- name: build application | |
run: make build | |
- name: remove extra WorshipList file | |
run: rm dist/WorshipList | |
- name: upload build | |
uses: actions/upload-artifact@v2 | |
with: | |
name: WorshipList | |
path: dist | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: set up python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: get flake8 | |
run: sudo pip install flake8 | |
- name: checkout repo | |
uses: actions/checkout@v2 | |
- name: lint application | |
run: make lint |