Skip to content

Experimenting with automatic deployment #1

Experimenting with automatic deployment

Experimenting with automatic deployment #1

Workflow file for this run

name: test
on:
push:
env:
SRC_DIR: zxlive
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.9 ]
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
- name: Install dependecies
run:
python -m pip install pyproject-flake8 pylint
- name: Flake8
run:
pflake8 zxlive
- name: Pylint
run:
pylint zxlive