-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version in pyproject.toml and CITATION.cff
Mark 4.2.0 as released in preparation Minor changelog updates Add target option to docker-compose for local testing Add lint service in docker-compose for local linting Prevent pylint from running on every push
- Loading branch information
Showing
5 changed files
with
18 additions
and
11 deletions.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: Run Pylint | ||
on: [push, pull_request] | ||
on: pull_request | ||
jobs: | ||
pylint: | ||
runs-on: ubuntu-latest | ||
|
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
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 |
---|---|---|
@@ -1,39 +1,50 @@ | ||
version: '3' | ||
version: '3.8' | ||
|
||
services: | ||
lint: | ||
image: space-packets-linting:latest | ||
build: | ||
target: lint | ||
|
||
3.8-tests: | ||
image: space-packets-3.8-test:latest | ||
build: | ||
target: test | ||
args: | ||
- BASE_IMAGE_PYTHON_VERSION=3.8 | ||
|
||
3.9-tests: | ||
image: space-packets-3.9-test:latest | ||
build: | ||
target: test | ||
args: | ||
- BASE_IMAGE_PYTHON_VERSION=3.9 | ||
|
||
3.10-tests: | ||
image: space-packets-3.10-test:latest | ||
build: | ||
target: test | ||
args: | ||
- BASE_IMAGE_PYTHON_VERSION=3.10 | ||
|
||
3.11-tests: | ||
image: space-packets-3.11-test:latest | ||
build: | ||
target: test | ||
args: | ||
- BASE_IMAGE_PYTHON_VERSION=3.11 | ||
|
||
3.12-tests: | ||
image: space-packets-3.12-test:latest | ||
build: | ||
target: test | ||
args: | ||
- BASE_IMAGE_PYTHON_VERSION=3.12 | ||
|
||
3.11-tests-min-deps: | ||
image: space-packets-3.11-test:latest | ||
build: | ||
target: test | ||
args: | ||
- BASE_IMAGE_PYTHON_VERSION=3.11 | ||
- BITSTRING_VERSION=4.0.1 |
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
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