Skip to content

Commit

Permalink
Merge pull request #348 from inaka/fix/ci-execution-conditions
Browse files Browse the repository at this point in the history
Fix CI execution conditions: pull request + push to main
  • Loading branch information
elbrujohalcon authored Jun 10, 2024
2 parents 7612541 + f1328ac commit 1764ff1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
---
name: build
on: [push]
on:
push:
branches:
- main
pull_request:
branches:
- "*"
workflow_dispatch: {}
jobs:
ci:
name: OTP ${{matrix.otp_vsn}} on ${{matrix.os}}
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
---
name: lint

on: [push]
on:
push:
branches:
- main
pull_request:
branches:
- "*"
workflow_dispatch: {}

jobs:
md_and_yml:
Expand Down

0 comments on commit 1764ff1

Please sign in to comment.