diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 19:22:40 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-30 19:22:40 -0500 |
commit | 8a6b7ef5416a755f3af3c131c7d406e901e3cb50 (patch) | |
tree | de29330ba53457fdd14c3477b8c0f14261c0c0a2 | |
parent | 30a58d921f92264b83caa56655804d4a62252965 (diff) | |
download | cmd2-git-8a6b7ef5416a755f3af3c131c7d406e901e3cb50.tar.gz |
Change name of lint and doc jobs
-rw-r--r-- | .github/workflows/doc.yml | 4 | ||||
-rw-r--r-- | .github/workflows/lint.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index fe61335a..0253c2eb 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -16,7 +16,7 @@ env: PYTHON_LATEST: 3.9 jobs: - ci: + doc: strategy: matrix: os: [ubuntu-latest] @@ -44,4 +44,4 @@ jobs: if: steps.cache-deps.outputs.cache-hit != 'true' run: pip install -U --user pip setuptools setuptools-scm flake8 nox - name: Sphinx documentation build - run: python -m nox --non-interactive --session docs # Run nox just for documentation build + run: python -m nox --non-interactive --session docs diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c00a18f4..241be8ab 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,7 +16,7 @@ env: PYTHON_LATEST: 3.9 jobs: - ci: + lint: strategy: matrix: os: [ubuntu-latest] |