Skip to content

Commit

Permalink
CI/CD fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsvante committed Apr 27, 2021
1 parent f16f435 commit 96b902b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: abatilo/actions-poetry@v2.1.0
- uses: abatilo/actions-poetry@v2.1.2
with:
poetry-version: 1.1.5
poetry-version: 1.1.6
- name: Build
run: poetry build
- uses: marvinpinto/action-automatic-releases@latest
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: abatilo/actions-poetry@v2.1.0
- uses: abatilo/actions-poetry@v2.1.2
with:
poetry-version: 1.1.6
- run: poetry install --extras ${{ matrix.extras }}
- run: poetry run pytest -v
linting:
Expand All @@ -32,7 +34,9 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: abatilo/actions-poetry@v2.1.0
- uses: abatilo/actions-poetry@v2.1.2
with:
poetry-version: 1.1.6
- run: poetry install --extras ${{ matrix.extras }}
- run: poetry run flake8
- run: poetry run mypy --ignore-missing-imports .
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: abatilo/actions-poetry@v2.1.0
- uses: abatilo/actions-poetry@v2.1.2
with:
poetry-version: 1.1.6
- run: poetry install --extras all
- run: poetry run pytest --cov=netsuite --cov-report=xml --cov-report=term
- uses: codecov/codecov-action@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: abatilo/actions-poetry@v2.1.0
- uses: abatilo/actions-poetry@v2.1.2
with:
poetry-version: 1.1.5
poetry-version: 1.1.6
- run: poetry install --extras all
- run: poetry run mkdocs build
- uses: peaceiris/actions-gh-pages@v3.7.3
Expand Down

0 comments on commit 96b902b

Please sign in to comment.