Skip to content

ci: use submodules, add dependabot, automatically update #7

ci: use submodules, add dependabot, automatically update

ci: use submodules, add dependabot, automatically update #7

Workflow file for this run

name: Update
on:
pull_request:
push:
branches:
- main
jobs:
update:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
with:
ref: ${{ github.head_ref }}
submodules: "true"
token: ${{ secrets.APPARITOR_GITHUB_TOKEN }}
- name: Setup Python 3.9
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c
with:
python-version: "3.9"
- name: Update
run: |
./scripts/update
- name: Test Python 3.9
run: |
pip install .
make test
- name: Setup Python 3.10
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c
with:
python-version: "3.10"
- name: Test Python 3.10
run: |
pip install .
make test
- name: Setup Python 3.11
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c
with:
python-version: "3.11"
- name: Test Python 3.11
run: |
pip install .
make test
- name: Setup Python 3.12
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c
with:
python-version: "3.12"
- name: Test Python 3.12
run: |
pip install .
make test
- name: Setup Python 3.13
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c
with:
python-version: "3.13"
- name: Test Python 3.13
run: |
pip install .
make test
- name: Setup Python 3.14
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c
with:
python-version: "3.12"
- name: Test Python 3.14
run: |
pip install .
make test
- name: Commit
uses: devops-infra/action-commit-push@e6a24fad602d1f92e46432c89a7e0c7fdd45d62d
with:
github_token: ${{ secrets.APPARITOR_GITHUB_TOKEN }}
commit_message: "ci: update"