Skip to content

update urls

update urls #37

name: Auxjad Template Project
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: make setup
- name: Black checks
run: make black-check
- name: isort checks
run: make isort-check
- name: Ruff checks
run: make ruff-check
- name: Unit tests
run: make test