Skip to content

justbases weekly

justbases weekly #104

Workflow file for this run

---
name: justbases weekly
# yamllint disable-line rule:truthy
on:
schedule:
- cron: 20 4 * * 4
workflow_dispatch:
jobs:
next-fedora-python-checks:
strategy:
matrix:
include:
- dependencies: black python3-isort
task: make -f Makefile fmt-travis
- dependencies: yamllint
task: make -f Makefile yamllint
- dependencies: pylint python3-hypothesis
task: PYTHONPATH=./src make -f Makefile lint
runs-on: ubuntu-latest
container: fedora:39 # NEXT DEVELOPMENT ENVIRONMENT
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: >
dnf install -y
make
${{ matrix.dependencies }}
- name: ${{ matrix.task }}
run: ${{ matrix.task }}