Restore default for column_valued name parameter #2
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: Run tests | |
on: | |
push: | |
pull_request: | |
env: | |
# global env to all steps | |
TOX_WORKERS: -n2 | |
jobs: | |
run-test: | |
name: ${{ matrix.python-version }}-${{ matrix.sqlalchemy }} | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
python-version: | |
- "3.10" | |
sqlalchemy: | |
- sqla_release | |
- sqla_rel_1_4 | |
fail-fast: false | |
# steps to run in each job. Some are github actions, others run shell commands | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set up python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: ${{ matrix.architecture }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade tox setuptools | |
pip list | |
- name: Set env | |
run: | | |
echo "SQLA_REF=$(python .github/workflows/scripts/find_version.py ${{ matrix.sqlalchemy }})" >> $GITHUB_ENV | |
- name: Run tests | |
run: | | |
tox |