Plot now works more or less. Still need to iron out some minor issues… #110
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: Presubmit | |
on: [push] | |
jobs: | |
Presubmit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- uses: actions/checkout@v3 | |
- run: python3 -m pip install -r requirements-dev.txt | |
- run: ./check.sh |