Minimal updates #24
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: Run rst tests | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
install-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 # Checking out the repo | |
- name: Install dependecies | |
uses: VaultVulp/action-pipenv@v2.0.1 | |
with: | |
command: install -d # Install all dependencies, including development ones | |
- name: Test | |
uses: VaultVulp/action-pipenv@v2.0.1 | |
with: | |
command: run test # Run custom `test` command defined in the `[scripts]` block of Pipfile |