Skip to content

Commit

Permalink
CI: Avoid duplicate tests on pull requests
Browse files Browse the repository at this point in the history
Seems testing on "push" events is enough.
Before this commit, pushing and opening a PR
caused the same commit to be tested twice.
  • Loading branch information
deathaxe committed May 18, 2024
1 parent 386b1f5 commit eaa9fc5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
name: CI

on: [push, pull_request]
on:
push:
branches:
- '**'
tags-ignore:
- '**'
paths:
- '.github/workflows/ci.yml'
- 'package_control/**/*.py'
workflow_dispatch:

jobs:
test-all:
Expand Down

0 comments on commit eaa9fc5

Please sign in to comment.