testing CI verbose pytest #64
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: ci-python-test | |
# Define the events that trigger the workflow | |
on: | |
push: | |
branches: | |
- '*' | |
workflow_dispatch: | |
# Define the jobs in the workflow | |
jobs: | |
python-test: | |
# Define the type of runner to use | |
runs-on: ubuntu-latest | |
# # Define strategy for matrix builds | |
# strategy: | |
# matrix: | |
# # You can change the default value as needed | |
# python-version: ['3.8', '3.9', '3.10'] | |
steps: | |
# Step: Check out the repository's code to the runner | |
- name: checkout-code | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
# # Step: Set up Python environment | |
# - name: setup-python-env ${{ matrix.python-version }} | |
# uses: actions/setup-python@v4 | |
# with: | |
# python-version: ${{ matrix.python-version }} | |
# Step: Install project dependencies using pip | |
- name: Install dependencies | |
run: | | |
$CONDA/bin/conda env update --file environment.yml --name base | |
# Step: Run tests with Pytest | |
- name: run-tests | |
run: | | |
$CONDA/bin/pytest -vv |