feat: 更新微信用户和标签相关类型定义,增强类型安全性并优化API响应 #90
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: Rust Backend CI | |
| on: | |
| push: | |
| branches: ["dev"] | |
| paths: | |
| - "backend/**" | |
| pull_request: | |
| branches: ["dev"] | |
| paths: | |
| - "backend/**" | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| BINARY_NAME: backend | |
| DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
| SQLX_OFFLINE: true | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Cache Rust dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| backend/target | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: ${{ runner.os }}-cargo- | |
| - name: Cache SQLx metadata | |
| uses: actions/cache@v3 | |
| with: | |
| path: backend/.sqlx | |
| key: ${{ runner.os }}-sqlx-${{ hashFiles('**/*.rs', '**/migrations/**') }} | |
| restore-keys: ${{ runner.os }}-sqlx- | |
| - name: Install SQLx CLI | |
| run: cargo install sqlx-cli --no-default-features --features postgres | |
| - name: Prepare SQLx metadata | |
| run: | | |
| cd backend | |
| cargo sqlx prepare -- --tests | |
| env: | |
| DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
| SQLX_OFFLINE: true | |
| - name: Run tests | |
| run: cd backend && cargo test --verbose | |
| build: | |
| name: Build ${{ matrix.target.name }} | |
| needs: test | |
| runs-on: ${{ matrix.target.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| target: | |
| - name: Linux x86_64 | |
| os: ubuntu-latest | |
| target: x86_64-unknown-linux-gnu | |
| bin: backend | |
| asset_name: backend-linux-amd64 | |
| - name: Linux ARM64 | |
| os: ubuntu-latest | |
| target: aarch64-unknown-linux-gnu | |
| bin: backend | |
| asset_name: backend-linux-arm64 | |
| - name: Windows | |
| os: windows-latest | |
| target: x86_64-pc-windows-msvc | |
| bin: backend.exe | |
| asset_name: backend-windows-amd64.exe | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| targets: ${{ matrix.target.target }} | |
| - name: Install cross compile tools (Linux ARM64 only) | |
| if: matrix.target.target == 'aarch64-unknown-linux-gnu' | |
| run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu | |
| - name: Cache Rust dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| backend/target | |
| key: ${{ runner.os }}-${{ matrix.target.target }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: ${{ runner.os }}-${{ matrix.target.target }}-cargo- | |
| - name: Cache SQLx metadata | |
| uses: actions/cache@v3 | |
| with: | |
| path: backend/.sqlx | |
| key: ${{ runner.os }}-sqlx-${{ hashFiles('**/*.rs', '**/migrations/**') }} | |
| restore-keys: ${{ runner.os }}-sqlx- | |
| - name: Install SQLx CLI | |
| run: cargo install sqlx-cli --no-default-features --features postgres | |
| - name: Prepare SQLx metadata | |
| run: | | |
| cd backend | |
| cargo sqlx prepare -- --tests | |
| env: | |
| DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
| SQLX_OFFLINE: true | |
| - name: Build release binary | |
| run: | | |
| cd backend | |
| cargo build --release --target ${{ matrix.target.target }} | |
| env: | |
| CC_aarch64_unknown_linux_gnu: aarch64-linux-gnu-gcc | |
| CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc | |
| - name: Prepare binary | |
| shell: bash | |
| run: | | |
| cd backend | |
| mkdir -p release | |
| cp target/${{ matrix.target.target }}/release/${{ matrix.target.bin }} release/${{ matrix.target.asset_name }} | |
| - name: Upload binary as artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ matrix.target.asset_name }} | |
| path: backend/release/${{ matrix.target.asset_name }} | |
| if-no-files-found: error |