Skip to content

feat: (re-)add VRS-Python translator #71

feat: (re-)add VRS-Python translator

feat: (re-)add VRS-Python translator #71

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
style:
name: Check style
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: python3 -m pip install ".[dev]"
- name: Ruff checks
run: python3 -m ruff check .
- name: isort checks
run: python3 -m isort --check .