Skip to content

feat: bump python version to 3.12 #29

feat: bump python version to 3.12

feat: bump python version to 3.12 #29

Workflow file for this run

name: Test
'on':
- push
- pull_request
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install test dependencies
run: |
python -m pip install --disable-pip-version-check editorconfig-checker
make dev-requirements
- name: Run tox
run: |
make lint-editorconfig
make test