Re-add rust-skipped (#392)

* re-add skipped workflow

* re-add skipped workflow
pull/396/head
Mattie Conover 3 years ago committed by GitHub
parent 36c1a6bf94
commit e2d3e10fe6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 29
      .github/workflows/rust-skiped.yml

@ -0,0 +1,29 @@
# This is here to satisfy the PR requirements when no rust changes occur.
name: rust
on:
pull_request:
branches: [main]
paths-ignore:
- 'rust/**'
env:
CARGO_TERM_COLOR: always
jobs:
build-rs:
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required" '
test-rs:
runs-on: ubuntu-latest
steps:
- run: 'echo "No test required" '
lint-rs:
runs-on: ubuntu-latest
steps:
- run: 'echo "No lint required" '
Loading…
Cancel
Save