-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: add ci with github actions workflow
- Loading branch information
1 parent
bab0a26
commit 0c2af1a
Showing
2 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Lint commit messages | ||
uses: wagoid/commitlint-github-action@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.13" | ||
|
||
- name: Install PDM | ||
run: | | ||
pip install --user pdm | ||
pdm self update | ||
- name: Install dependencies | ||
run: pdm install | ||
|
||
- name: Cache PDM packages | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pdm | ||
key: ${{ runner.os }}-pdm-${{ hashFiles('pdm.lock') }} | ||
restore-keys: ${{ runner.os }}-pdm- | ||
|
||
- name: Lint code | ||
run: pdm run lint | ||
|
||
- name: Run tests | ||
run: pdm run test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters