Skip to content

Commit

Permalink
Update build pipeline for newer py versions
Browse files Browse the repository at this point in the history
  • Loading branch information
surajpaib committed Mar 7, 2024
1 parent fdef2a5 commit e43a074
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 16 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
name: build

on: [push, pull_request]
on:
- push:
branches:
- master
- pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9"]
python-version: ["3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
71 changes: 58 additions & 13 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ tornado = "^6.4"

[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
bandit = "^1.7.1"
bandit = "^1.7.7"
isort = {extras = ["colors"], version = "^5.10.1"}
mypy = "^0.910"
mypy-extensions = "^0.4.3"
Expand All @@ -72,6 +72,7 @@ coverage = "^6.1.2"
coverage-badge = "^1.1.0"
pytest-html = "^3.1.1"
pytest-cov = "^3.0.0"
aiohttp = "^3.9.3"

[tool.black]
# https://github.com/psf/black
Expand Down

0 comments on commit e43a074

Please sign in to comment.