Austin Godber
729fd18fbf
Some checks failed
Test bankfind / Python ${{ matrix.python-version }} sample (3.8) (push) Failing after 49s
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
name: Test bankfind
|
|
run-name: ${{ gitea.actor }} is testing out bankfind 🐍
|
|
on:
|
|
- push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: [ '3.8' ]
|
|
name: Python ${{ matrix.python-version }} sample
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
architecture: x64
|
|
- name: Setup Tests and Dependencies
|
|
run: |
|
|
python --version
|
|
pip install -U pip
|
|
pip install pytest coverage pytest-cov
|
|
pip install -r requirements.txt
|
|
- name: Run tests
|
|
run: |
|
|
pytest
|
|
- name: build package with flit
|
|
run: |
|
|
pip install -U flit
|
|
flit build
|
|
find dist
|
|
- name: upload package as artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: bankfind
|
|
path: dist
|
|
|
|
# - name: Build docs with mkdocs
|
|
# run: |
|
|
# pip install mkdocs mkdocs-material mkdocs-material-extensions
|
|
# cd docs
|
|
# mkdocs build
|
|
# find site |