feat(docs): add mention of the new --skip-run flag #3
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: Verify ckan-devstaller runs CKAN-only install successfully | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| ckanonlyinstall: | |
| name: Run ckan-devstaller with a CKAN-only install | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| # For the git-auto-commit-action | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Rust stable toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Cache cargo deps and target folder | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| workspaces: ". -> target" | |
| - name: Run ckan-devstaller | |
| run: cargo run --release --verbose -- --ckan-version 2.11.4 --skip-interactive --skip-run |