chore: Update GitHub workflows to run on correct branches #61
Workflow file for this run
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: Tests | |
on: | |
push: | |
branches: | |
- dev # Runs on pushes to dev branch | |
pull_request: | |
branches: | |
- main # Runs on PRs to main branch | |
jobs: | |
run-test: | |
if: github.repository != 'evmckinney9/python-template' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check if template_flag.yml is gone | |
id: check-template | |
if: ${{ hashFiles('.github/template_flag.yml') == '' }} | |
run: | | |
echo "test_continue=true" >> $GITHUB_ENV | |
- name: Set up Python | |
if: env.test_continue == 'true' | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
cache: "pip" | |
cache-dependency-path: "**/pyproject.toml" | |
- name: Install dependencies | |
if: env.test_continue == 'true' | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[test] --quiet | |
- name: Run pytest | |
if: env.test_continue == 'true' | |
run: pytest src/tests/ |