diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 18:33:21 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 18:33:21 -0500 |
commit | d8ae2e713d0d48715a4c4305e59cc8fa821cc761 (patch) | |
tree | f8d0713a38a778b995e3cc4777f47e2b0f70fcd2 /.github/workflows | |
parent | 4d4d0c4a8225b68765043159043097dfabf642c0 (diff) | |
download | cmd2-git-d8ae2e713d0d48715a4c4305e59cc8fa821cc761.tar.gz |
Fix how python version is passed to nox command-line argument
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04c82f41..18c81bb3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,4 +49,4 @@ jobs: - name: Run tests and post coverage results env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: python -m nox --non-interactive --session matrix.python-version + run: python -m nox --non-interactive --session $${{ matrix.python-version }} |