ci: use macOS 14 as macOS 12 is deprecated #224
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
name: lint | |
on: push | |
jobs: | |
licenses: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout rz-bindgen | |
uses: actions/checkout@v3 | |
- name: REUSE compliance check | |
uses: fsfe/reuse-action@v1 | |
python: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout rz-bindgen | |
uses: actions/checkout@v3 | |
- name: Install tools | |
run: | | |
pip install mypy pyflakes pylint black | |
- name: Run mypy | |
run: | | |
mypy src/main.py | |
if: ${{ always() }} | |
- name: Run pyflakes | |
run: | | |
pyflakes src/*.py | |
if: ${{ always() }} | |
- name: Run pylint | |
run: | | |
pylint src/*.py | |
if: ${{ always() }} | |
- name: Run black | |
run: | | |
black --check --diff src/*.py src/clang/cindex.pyi | |
if: ${{ always() }} | |
codeql: | |
runs-on: ubuntu-22.04 | |
permissions: | |
security-events: write | |
steps: | |
- name: Checkout rz-bindgen | |
uses: actions/checkout@v3 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: python | |
- name: Run CodeQL | |
uses: github/codeql-action/analyze@v2 |