Skip to content

change env for unit test when run is triggered #91

change env for unit test when run is triggered

change env for unit test when run is triggered #91

Workflow file for this run

name: Unit Testing
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
workflow_dispatch:
env:
POETRY_VERSION: "1.6.1"
jobs:
test:
runs-on: ubuntu-latest
environment: ${{ startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch') && 'CI-prod' || 'CI-staging' }}

Check failure on line 18 in .github/workflows/unit_test.yml

View workflow run for this annotation

GitHub Actions / Unit Testing

Invalid workflow file

The workflow is not valid. .github/workflows/unit_test.yml (Line: 18, Col: 18): Unexpected symbol: ')'. Located at position 82 within expression: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch') && 'CI-prod' || 'CI-staging'
strategy:
# You can use PyPy versions in python-version.
# For example, pypy-2.7 and pypy-3.8
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: ${{ env.POETRY_VERSION }}
- name: Install deps
shell: bash
run: poetry install --with dev
- name: Run testing
env:
CI: true
shell: bash
run: poetry run pytest tests