Skip to content

Commit

Permalink
Add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarchmer committed Jul 28, 2024
1 parent fbc2f46 commit aadb443
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.10', '3.11']
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
- uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
pdm sync -d -G dev
- name: Run Lint
run: |
pdm lint
- name: Run Tests
run: |
pdm test
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v0.11.1 (2024-01-12)

* Switch to Ruff and cleanup files

### v0.11.0 (2024-01-12)

* Refactor to use sessions to handle retries.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="django-rest-framework-client",
version="0.11.0",
version="0.11.1",
description="Python client for a DjangoRestFramework based web site",
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit aadb443

Please sign in to comment.