Skip to content

Update LICENSE (#32) #62

Update LICENSE (#32)

Update LICENSE (#32) #62

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "*"
push:
branches:
- "main"
- "dev"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run Pytest
run: |
pytest udao
hooks:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run pre-commit hooks
run: pre-commit run --all-files