Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
eggplants committed Apr 30, 2024
1 parent 5705a0d commit b0b3b96
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
11 changes: 8 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@ updates:
- package-ecosystem: pip
directory: /
schedule:
interval: daily
interval: monthly
groups:
dependencies:
dependency-type: production
dev-dependencies:
dependency-type: development
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
interval: monthly
- package-ecosystem: docker
directory: /
schedule:
interval: daily
interval: monthly
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os:
- ubuntu-latest
# - windows-latest
- windows-latest
- macos-latest
python-version:
# - '3.8'
Expand All @@ -32,10 +32,10 @@ jobs:
- uses: abatilo/actions-poetry@v3
- run: poetry install --no-interaction
- name: Test
if: ${{ runner.os == 'Windows' }}
if: ${{ runner.os != 'Linux' }}
run: poetry run task test
- name: Test & publish code coverage
if: ${{ runner.os != 'Windows' && env.CC_TEST_REPORTER_ID != '' }}
if: ${{ runner.os = 'Linux' && env.CC_TEST_REPORTER_ID != '' }}
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
Expand Down

0 comments on commit b0b3b96

Please sign in to comment.