This commit is contained in:
Joshua Tauberer
2023-01-04 06:04:42 -05:00
parent 8b54aaa1e5
commit 671cb7a401

View File

@@ -2,11 +2,11 @@ version: 2
jobs:
build:
docker:
- image: circleci/python:3.8
- image: cimg/python:3.11
steps:
# Set up.
- checkout
- run: sudo pip install -r scripts/requirements.txt
- run: pip install -r scripts/requirements.txt
# Run tests.
- run: python test/workout.py
@@ -19,10 +19,10 @@ jobs:
# on the repo, which is not CircleCI's default.
deploy:
docker:
- image: circleci/python:3.8
- image: cimg/python:3.8
steps:
- checkout
- run: sudo pip install -r scripts/requirements.txt
- run: pip install -r scripts/requirements.txt
- run: scripts/update_gh_pages.sh
workflows: