Skip to content

Commit

Permalink
workflow pylint -> test 1
Browse files Browse the repository at this point in the history
  • Loading branch information
bwallrich committed May 15, 2024
1 parent 2f4a763 commit d9c3efb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Pylint

on: [push]
on: [ workflow_call ]

jobs:
build:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Build_Package

on: [push]
on: [published]

jobs:
tests:
uses: ./.github/workflows/tests.yml
build:
runs-on: ubuntu-latest
strategy:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CodeCov

on: [push, pull_request]
on: [push, pull_request, workflow_call]

jobs:
build:
Expand All @@ -9,6 +9,8 @@ jobs:
matrix:
python-version: ["3.10"]
steps:
- name : Pylint before
uses: ./.github/workflows/pylint.yml
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
Expand Down

0 comments on commit d9c3efb

Please sign in to comment.