Rasenmaeher integration #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
checks: write | |
strategy: | |
matrix: | |
python-version: ["3.11"] # , "3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: install dependencies | |
id: install_dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pre-commit detect-secrets | |
- name: pre-commit | |
id: pre_commit | |
run: | | |
export SKIP=no-commit-to-branch | |
cp takserver.env.example takserver.env | |
pre-commit run --all-files | |
# TODO: Check that compositions meant for purely local development build |