delete old coq related code #141
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: Check and Build Ligo | |
| on: | |
| push: | |
| branches: | |
| - stable | |
| tags: | |
| - "v*.*.*" | |
| pull_request: | |
| branches: | |
| - stable | |
| jobs: | |
| build_nix: | |
| name: Build Ligo ${{ matrix.system }} | |
| strategy: | |
| matrix: | |
| system: [ubuntu-24.04, macos-14] | |
| runs-on: ${{ matrix.system }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v30 | |
| - run: nix build -L .#ligo | |
| format_nix: | |
| name: Run Formatter on Ligo | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v30 | |
| - run: nix fmt |