Skip to content

Update release_script.yml #44

Update release_script.yml

Update release_script.yml #44

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11.4]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest ruff
pip install .
- name: Lint with Ruff
run: |
ruff .
- name: Test with pytest
run: |
pytest