Skip to content

feat: bypass codex update check, add wsl auto-setup, and update readm… #8

feat: bypass codex update check, add wsl auto-setup, and update readm…

feat: bypass codex update check, add wsl auto-setup, and update readm… #8

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
cd pipeline
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -e .
- name: Test with pytest
run: |
cd pipeline
pytest tests/ -v -p no:anchorpy --cov=cloding --cov-report=xml