Skip to content

Commit

Permalink
fix: workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
koushik-kiran-kumar committed Jun 25, 2024
1 parent b82a64b commit 12d99b1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "BuildAndTest"
name: "Build And Test"

on:
push:
Expand All @@ -8,7 +8,7 @@ on:

jobs:
build:
name: Build and test driver
name: Build and Test Driver
runs-on: ubuntu-20.04
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "CodeQL"
name: "CodeQL Analysis"

on:
push:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow is responsible for publishing packages to PyPi
# and creating offline packages

name: "Release new version"
name: "Release New Version"

on:
- workflow_call
Expand All @@ -12,12 +12,12 @@ jobs:
name: Publish to PyPi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.12

- name: Update PIP tools
run: |
Expand Down
4 changes: 0 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,3 @@ test=pytest

[wheel]
universal=1

[tool:pytest]
python_paths = .
testpaths = tests
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py34,py35,py36
envlist = py27,py34,py35,py36,py37,py38,py39,py310,py311,py312

[testenv]
passenv = LANG
Expand Down

0 comments on commit 12d99b1

Please sign in to comment.