Skip to content

Install Prettier For Automatic Code Formatting (JS, HTML, & SCSS) #158

Install Prettier For Automatic Code Formatting (JS, HTML, & SCSS)

Install Prettier For Automatic Code Formatting (JS, HTML, & SCSS) #158

Workflow file for this run

# A GitHub action to run our data tests
name: Pytest Data Tests
on:
push:
branches: ["main"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
jobs:
pytest:
name: "Pytest"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: |
cd src/data
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pytest