删除无用内容 #54
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| # branches: [ "main" ] | |
| #pull_request: | |
| # branches: [ "main" ] | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: 编译 | |
| run: cargo build --verbose | |
| - name: 测试 | |
| run: cargo test --verbose | |
| ci-linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: 编译 | |
| run: cargo build --release | |
| - name: 上传 | |
| uses: actions/[email protected] | |
| with: | |
| name: rt-linux | |
| path: | | |
| target/release/rt | |
| target/release/locales | |
| ci-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: 编译 | |
| run: cargo build --release | |
| - name: 上传 | |
| uses: actions/[email protected] | |
| with: | |
| name: rt-windows | |
| path: | | |
| target/release/rt.exe | |
| target/release/locales |