doc fix: Fixed syntax error and added test for RST syntax #149
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: | |
branches: | |
- '**' | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
name: Testing | |
runs-on: "ubuntu-latest" | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
matrix: | |
python-version: ['3.12'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: dev | |
environment-file: ./environment_dev.yaml | |
python-version: ${{ matrix.python-version }} | |
- run: pip install . -v | |
- run: make test python=python | |
- run: make format python=python | |
- run: make build python=python | |
- run: make test-dist python=python |