Update TASK_LIST.md #153
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Mac/Ubuntu Python 3.8 Unit Tests | |
on: | |
push: | |
branches-ignore: | |
- development | |
- master | |
- gh-pages | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install pip dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install -r requirements.txt | |
- name: Run unit tests | |
run: python -m unittest | |
- name: Isort | |
uses: isort/[email protected] | |
- name: Flake8 | |
run: flake8 | |
- name: Autopep8 | |
run: autopep8 --in-place --aggressive --recursive machine_common_sense |