Skip to content

Commit

Permalink
build: 🛠 Run linting and testing weekly so we will see if package upd…
Browse files Browse the repository at this point in the history
…ates make any difference
  • Loading branch information
ddanier committed Oct 1, 2023
1 parent 297d027 commit ae0d6db
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: "LINT: Run ruff & mypy"
on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: '0 7 * * 1'
jobs:
flake8-and-mypy:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
release:
types: [published]
jobs:
build-and-publish:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: "TEST: Run pytest using tox"
on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: '0 7 * * 1'
jobs:
tox-pytest:
test:
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit ae0d6db

Please sign in to comment.