- migrated to python 3.11 & poetry 1.2+ - updated project dependencies & readme - DockerfileDev is now containerfile - improve contribution docs - it includes development with podman
28 lines
637 B
YAML
28 lines
637 B
YAML
name: WakaReadme
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python 3.11
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.11"
|
|
- name: Install dependencies
|
|
run: |
|
|
curl -sSL https://install.python-poetry.org | python -
|
|
export PATH="$HOME/.poetry/bin:${PATH}"
|
|
source $HOME/.poetry/env
|
|
poetry install
|
|
- name: Run unit tests
|
|
run: |
|
|
poetry run python -m unittest discover
|