Skip to content

Commit

Permalink
Merge pull request #2 from StarCitizenToolBox/main
Browse files Browse the repository at this point in the history
fork sync
  • Loading branch information
herokillerJ authored Nov 22, 2024
2 parents 2c2b159 + ce0d4d2 commit fe4bb05
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/pr_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: PR Check

on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- '**'
workflow_dispatch:

jobs:
run-rust:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Check runner_tools
uses: actions/checkout@v4
with:
repository: StarCitizenToolBox/runner_tools
path: runner_tools

- name: Set up Rust
uses: dtolnay/rust-toolchain@stable

- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
workspaces: "rust"
cache-all-crates: true

- name: PR Check
run: cargo run --manifest-path ./runner_tools/localization/Cargo.toml pr_check --release

0 comments on commit fe4bb05

Please sign in to comment.