Skip to content

Commit

Permalink
Merge pull request #363 from eblot/dev/ebl/citweak
Browse files Browse the repository at this point in the history
.github: run all CI sessions on PR
  • Loading branch information
eblot authored Nov 29, 2023
2 parents 0d20ccd + 14a901f commit d9233c4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pythonchecksyntax.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: Python syntax tests
# check that there is no import issues with tool suite

on: [push]
on:
push:
pull_request:
types: [assigned, opened, synchronize, reopened]

jobs:
build:
Expand All @@ -14,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonmocktests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Python package

on: [push]
on:
push:
pull_request:
types: [assigned, opened, synchronize, reopened]

jobs:
build:
Expand All @@ -13,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit d9233c4

Please sign in to comment.