[ci] release
, release-ios
워크플로의 체크아웃 문제 해결
#8
Workflow file for this run
This file contains 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: Dry-run before publish | |
on: | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
dry-run: | |
runs-on: ubuntu-latest | |
environment: testing | |
concurrency: | |
group: testing | |
cancel-in-progress: true | |
env: | |
SSO_ID: ${{ vars.SSO_ID }} | |
SSO_PASSWORD: ${{ secrets.SSO_PASSWORD }} | |
TARGET_YEAR: ${{ vars.TARGET_YEAR }} | |
TARGET_SEMESTER: ${{ vars.TARGET_SEMESTER }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Retrieve cache | |
uses: Leafwing-Studios/cargo-cache@v2 | |
- name: Publish dry-run | |
run: cargo publish -p rusaint --dry-run --verbose | |
- name: Run tests | |
run: cargo test --verbose |