Skip to content

Commit

Permalink
fix(ci): execute ci on pull request and push on main and tags
Browse files Browse the repository at this point in the history
  • Loading branch information
42atomys committed Nov 27, 2024
1 parent 6e60618 commit 138eddd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
on: [pull_request]
on:
push:
branches: [main]
tags: [v*]
pull_request:
name: Linters
permissions:
# Required: allow read access to the content for analysis.
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
on: [push]
on:
push:
branches: [main]
tags: [v*]
pull_request:
name: Tests
jobs:
test:
Expand Down

0 comments on commit 138eddd

Please sign in to comment.