Skip to content

Commit

Permalink
Chore update CI workflow for dev branch
Browse files Browse the repository at this point in the history
- Updated CI workflow to trigger on `dev` branch
- Added Python 3.12.* to the matrix for dependency_review job
- Adjusted linting workflow to run on the `dev` branch
  • Loading branch information
vagabondHustler committed Jan 19, 2024
1 parent b4fcf4b commit 4a3159c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ run-name: Continuous integration

on:
pull_request:
branches: ["main"]
branches: ["dev"]

jobs:
dependency_review:
Expand All @@ -19,7 +19,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.10.*", "3.11.*"]
python-version: ["3.10.*", "3.11.*", "3.12.*"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ run-name: Lint codebase
on:
push:
branches:
- main
- dev
paths:
- 'src/**'
- 'scripts/**'
Expand Down

0 comments on commit 4a3159c

Please sign in to comment.