feat(math): Support TeX-like syntax for roots with degrees #2863
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: Run Flake | |
| on: [ push, pull_request ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| nix-flake: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@v18 | |
| - name: Cache Nix dependencies | |
| uses: DeterminateSystems/flakehub-cache-action@v2 | |
| # Upstream package sometimes has flags set that disable flake checking | |
| - name: Setup test env | |
| run: | | |
| echo 'NIXPKGS_ALLOW_BROKEN=1' >> $GITHUB_ENV | |
| - name: Check flake | |
| run: nix flake check --impure | |
| - name: Build flake | |
| run: nix build | |
| - name: Test run in shell | |
| run: nix shell -c sile --version | |
| - name: Test run as flake | |
| run: nix run . -- --version |