Skip to content

Commit

Permalink
Config Github Actions for .toml
Browse files Browse the repository at this point in the history
  • Loading branch information
rachel3834 committed Dec 12, 2024
1 parent c17bd90 commit af6d6f1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"

- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
pip install pytest
pip install .
- name: Test with PyTest
run: |
Expand Down

0 comments on commit af6d6f1

Please sign in to comment.