Skip to content

Commit

Permalink
make CI running in PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
younik committed Jan 11, 2025
1 parent 65e5f47 commit 9cd94a8
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 9cd94a8

Please sign in to comment.