Skip to content

Commit

Permalink
Merge pull request #227 from younik/fix-ci
Browse files Browse the repository at this point in the history
Make CI running in PRs
  • Loading branch information
saleml authored Jan 12, 2025
2 parents 65e5f47 + 9cd94a8 commit 7ae5839
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Python package

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

jobs:
build:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
# This GitHub Action assumes that the repo contains a valid .pre-commit-config.yaml file.
---
name: pre-commit
on: [push]
on:
pull_request:
push:
branches: [master]

permissions:
contents: read
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Python Package using Conda

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

jobs:
build-linux:
Expand Down

0 comments on commit 7ae5839

Please sign in to comment.