Skip to content

Update README.md

Update README.md #8

Workflow file for this run

name: Wordle Tests
on: [push]
jobs:
build:
name: Run Python Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup timezone
uses: zcong1993/setup-timezone@master
with:
timezone: UTC
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Python dependencies
working-directory: recitation-8
run: |
sudo apt install -y $(grep -o ^[^#][[:alnum:]-]* "packages.list")
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Test with pytest
working-directory: recitation-8
run: |
python3 -m pytest wordle_test.py