Bump the dependencies group across 1 directory with 5 updates #620
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: Test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install Dependencies | |
run: pip install -r requirements.txt | |
# TODO: fix libEGL.so.1 in GitHub Actions | |
# - name: Run PyTest | |
# run: pytest | |
- name: Run MyPy | |
run: mypy ThingiBrowser |