diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2023-02-20 21:50:40 +0000 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2023-02-20 21:50:40 +0000 |
commit | f4e0e56bd70e9b53d59767ae9c979db25632ac16 (patch) | |
tree | 24a6ac2e8662bfdae9f5808b09707a432a5886ba /.github | |
parent | bbebe7b4c85cc6dfdbb6307452a0ba2109ec29fa (diff) | |
download | numpy-f4e0e56bd70e9b53d59767ae9c979db25632ac16.tar.gz |
MAINT: minor CI job, comments, and style changes to meson.build files
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux_meson.yml | 6 | ||||
-rw-r--r-- | .github/workflows/windows_meson.yml | 6 |
2 files changed, 2 insertions, 10 deletions
diff --git a/.github/workflows/linux_meson.yml b/.github/workflows/linux_meson.yml index d1d20b87d..b03144a12 100644 --- a/.github/workflows/linux_meson.yml +++ b/.github/workflows/linux_meson.yml @@ -1,10 +1,6 @@ name: Test Meson build (Linux) on: - push: - branches: - - main - - maintenance/** pull_request: branches: - main @@ -26,7 +22,7 @@ permissions: jobs: meson_devpy: - if: "github.repository == 'numpy/numpy' && !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip github]')" + if: "github.repository == 'numpy/numpy'" runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/windows_meson.yml b/.github/workflows/windows_meson.yml index c74d13681..38fe8d6f7 100644 --- a/.github/workflows/windows_meson.yml +++ b/.github/workflows/windows_meson.yml @@ -1,10 +1,6 @@ name: Test Meson build (Windows) on: - push: - branches: - - main - - maintenance/** pull_request: branches: - main @@ -24,7 +20,7 @@ jobs: meson: name: Meson windows build/test runs-on: windows-2019 - if: "github.repository == 'numpy/numpy' && !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip github]')" + if: "github.repository == 'numpy/numpy'" steps: - name: Checkout uses: actions/checkout@v3 |