feat(glyph): add Emoji 17.0 emoji #2726
Workflow file for this run
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: "Nix build" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [depot-ubuntu-24.04-16, depot-ubuntu-24.04-arm-16, depot-macos-26] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v31 | |
| - name: Cache Nix Evaluation | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/nix | |
| key: nix-eval-${{ hashFiles('flake.lock') }} | |
| - uses: cachix/cachix-action@v14 | |
| with: | |
| name: vicinae | |
| authToken: ${{ github.ref == 'refs/heads/main' && secrets.CACHIX_AUTH_TOKEN || '' }} | |
| pushFilter: "(swift-bin|swift-.*-RELEASE.*\\.tar\\.gz)" | |
| - name: Build Flake | |
| run: nix build -L | |
| - name: Build Soulver backend | |
| if: matrix.os == 'depot-ubuntu-24.04-16' | |
| run: nix build -L .#with-soulver | |
| - name: Run Test Shell | |
| run: nix develop --command echo OK |