Extended capacity to fully tailor the SCSS by creating the /data/scss/main.scss file #18
Workflow file for this run
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: Unit Tests | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v2 | |
| - name: Setup Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: "3.11" | |
| - name: Setup poetry | |
| uses: Gr1N/setup-poetry@v8 | |
| - name: Install dependencies | |
| run: | | |
| poetry install --no-root --no-interaction | |
| - name: Run lint | |
| run: | | |
| poetry run inv lint | |
| - name: Run test suite | |
| run: | | |
| poetry run inv tests |