Compare commits

..

4 Commits

Author SHA1 Message Date
2e7de3bf18 Merge pull request #124 from Orbit-Startech/tw
TCTP - 更新 global.ini 至 4.0.0(EPTU)
2024-12-16 12:03:13 +08:00
22b925906e 更新 global.ini 至 4.0.0(EPTU)
Signed-off-by: everland.3769 <ng930119@gmail.com>
2024-12-16 11:53:02 +08:00
4aaebb325a bump: runner_tools v1.0.1 2024-12-04 15:07:21 +08:00
9bc7af6085 feat: runner 2024-11-28 18:19:59 +08:00
2 changed files with 4367 additions and 1972 deletions

37
.github/workflows/pr_check.yml vendored Normal file
View File

@ -0,0 +1,37 @@
name: PR Check
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- '**'
workflow_dispatch:
jobs:
rust-pr-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
cache-all-crates: true
prefix-key: "rs_cache"
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
shared-key: "share"
- name: Setup localization runner tools
run: cargo install --git https://github.com/StarCitizenToolBox/runner_tools.git --tag v1.0.1 localization
- name: PR Check
env:
GH_REPO: ${{ github.repository }}
GH_PR_NUMBER: ${{ github.event.pull_request.id }}
GH_PR_TITLE: ${{ github.event.pull_request.title }}
run: localization -m pr_check

File diff suppressed because one or more lines are too long