Thanks to visit codestin.com
Credit goes to github.com

Skip to content

删除无用内容

删除无用内容 #54

Workflow file for this run

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