Merge pull request #394 from RamsaiPolisetti/fix/readme-typo #226
This file contains hidden or 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: build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.7", "3.8"] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2.2.1 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install poetry | |
| run: make download-poetry | |
| - name: Set up cache | |
| uses: actions/cache@v2.1.3 | |
| with: | |
| path: .venv | |
| key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }} | |
| - name: Install dependencies | |
| run: | | |
| source "$HOME/.poetry/env" | |
| poetry config virtualenvs.in-project true | |
| poetry install | |
| # - name: Run safety checks | |
| # run: | | |
| # source "$HOME/.poetry/env" | |
| # STRICT=1 make check-safety | |
| # - name: Run style checks | |
| # run: | | |
| # source "$HOME/.poetry/env" | |
| # STRICT=1 make check-style | |
| - name: Run tests | |
| run: | | |
| source "$HOME/.poetry/env" | |
| make test |