Restrict CI to changes that will cause recompiles

This commit is contained in:
Félix Saparelli 2021-05-01 04:32:42 +12:00
parent 149b9b9821
commit bdc3550a0d
No known key found for this signature in database
GPG Key ID: B948C4BAE44FC474

View File

@ -1,11 +1,20 @@
on: on:
pull_request: pull_request:
paths:
- "cli/**"
- "lib/**"
- "/Cargo.*"
push: push:
branches: branches:
- main - main
- try/** - try/**
tags-ignore: tags-ignore:
- "*.*.*" - "cli-v*.*.*"
paths:
- "cli/**"
- "lib/**"
- "/Cargo.*"
- ".github/**"
name: Checks & Tests name: Checks & Tests