-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from jlowin/actions
Add tests
- Loading branch information
Showing
3 changed files
with
117 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: Run tests | ||
|
||
env: | ||
# enable colored output | ||
# https://github.com/pytest-dev/pytest/issues/7443 | ||
PY_COLORS: 1 | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
paths: | ||
- .github/workflows/run-tests.yml | ||
- src/** | ||
- tests/** | ||
- pyproject.toml | ||
- setup.py | ||
|
||
pull_request: | ||
paths: | ||
- .github/workflows/run-tests.yml | ||
- src** | ||
- tests/** | ||
- pyproject.toml | ||
- setup.py | ||
|
||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
run_tests: | ||
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} | ||
timeout-minutes: 15 | ||
strategy: | ||
matrix: | ||
# run no_llm tests across all python versions and oses | ||
# os: [ubuntu-latest, macos-latest, windows-latest] | ||
# python-version: ['3.9', '3.10', '3.11', '3.12'] | ||
os: [ubuntu-latest] | ||
python-version: ['3.9'] | ||
|
||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
env: | ||
CONTROLFLOW_OPENAI_API_KEY: ${{ secrets.CONTROLFLOW_OPENAI_API_KEY }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: download uv | ||
run: curl -LsSf https://astral.sh/uv/install.sh | sh | ||
|
||
- name: Install ControlFlow | ||
run: uv pip install --system ".[tests]" | ||
|
||
- name: Run tests | ||
run: pytest -n auto -vv | ||
if: ${{ !(github.event.pull_request.head.repo.fork) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Run static analysis | ||
|
||
env: | ||
# enable colored output | ||
# https://github.com/pytest-dev/pytest/issues/7443 | ||
PY_COLORS: 1 | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
|
||
static_analysis: | ||
timeout-minutes: 1 | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.9" | ||
- name: Run pre-commit | ||
uses: pre-commit/action@v3.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters