Skip to content

Commit

Permalink
Fix CI execution conditions: pull request + push to main
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-ferraz-oliveira committed Jun 7, 2024
1 parent 7612541 commit f1328ac
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 f1328ac

Please sign in to comment.