name: 可以公开的测试 on: push: branches: [ "master" ] pull_request: branches: [ "master" ] env: CARGO_TERM_COLOR: always jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: 构建 run: cargo build --verbose - name: 运行测试 run: cargo test --verbose --no-default-features -- --nocapture