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