Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

fix: clean up Dockerfile to leverage layer caches and solutions #49

fix: clean up Dockerfile to leverage layer caches and solutions

fix: clean up Dockerfile to leverage layer caches and solutions #49

name: computer_programming
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Repository
uses: actions/checkout@v4
- name: Spell Check
uses: rojopolis/[email protected]
with:
task_name: English
output_file: spellcheck-output.txt
- name: Install Pipenv
run: python -m pip install pipenv
- name: Install Dependencies
run: pipenv sync --system -d
- name: Style Check
run: black --check .
- name: Run Tests
run: pytest