Main 0.6 #810
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - "develop" | |
| - "main" | |
| - "main-0.4" | |
| - "main-0.6" | |
| concurrency: | |
| group: ${{ github.ref_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| fail-fast: false | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Install nix | |
| uses: cachix/install-nix-action@v30 | |
| - name: Set up cachix | |
| uses: cachix/cachix-action@v15 | |
| with: | |
| name: holochain-ci | |
| - name: Restore cargo and build from cache | |
| uses: actions/cache/restore@v3 | |
| with: | |
| path: | | |
| .cargo | |
| target | |
| key: ${{ runner.os }}-build-${{ hashFiles('Cargo.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-build- | |
| - name: Remove stale cargo config | |
| run: rm -f .cargo/config .cargo/config.toml | |
| - name: Install nix packages | |
| run: nix develop -c $SHELL -c "echo Nix packages installed" | |
| - name: Install JS packages | |
| run: nix develop -c $SHELL -c "npm ci" | |
| - name: Clippy | |
| run: nix develop -c $SHELL -c "cargo clippy --all-targets --all-features -- -D warnings" | |
| - name: Check rust formatting | |
| run: nix develop -c $SHELL -c "cargo fmt --check" | |
| - name: Build Happ | |
| run: nix develop -c $SHELL -c "npm run build:happ" | |
| - name: Save cargo and build to cache | |
| uses: actions/cache/save@v3 | |
| with: | |
| path: | | |
| .cargo | |
| target | |
| key: ${{ runner.os }}-build-${{ hashFiles('Cargo.lock') }} | |
| - name: Test with tryorama | |
| run: nix develop -c $SHELL -c "npm run test" |