1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-10-16 17:47:29 +00:00
patched-porobot/.github/workflows/test.yml

38 lines
733 B
YAML
Raw Normal View History

2022-12-24 02:55:52 +00:00
name: "Test suite"
on:
# Modification of a project file in the main branch
push:
branches:
- main
paths:
- "src/**"
- "tests/**"
- "benches/**"
- "examples/**"
- "Cargo.toml"
- "Cargo.lock"
# Pull request to the main branch modifying a project file
pull_request:
branches:
- main
paths:
- "src/**"
- "tests/**"
- "benches/**"
- "examples/**"
- "Cargo.toml"
- "Cargo.lock"
# Triggered by a new release
workflow_call:
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
uses: Steffo99/.github/.github/workflows/test-cargo-clippy.yml@main
test:
uses: Steffo99/.github/.github/workflows/test-cargo-test.yml@main