Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/zou-group/textgrad into main
Browse files Browse the repository at this point in the history
  • Loading branch information
mertyg committed Jun 11, 2024
2 parents 83d5470 + 41e00f4 commit 3e07bd8
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Python package

on:
push:
paths-ignore:
- '**.rst'

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
pytest

0 comments on commit 3e07bd8

Please sign in to comment.