Skip to content

add No Longer Slaves; #1 #63

add No Longer Slaves; #1

add No Longer Slaves; #1 #63

Workflow file for this run

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