dfeed.web.web.view.moderation: Fix "no keys to unban" #110
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: build | |
| on: [ push, pull_request ] | |
| jobs: | |
| build-dub: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-22.04 ] | |
| dc: [ dmd-2.110.0 ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Install dependencies | |
| run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev | |
| - name: Prepare compiler | |
| uses: dlang-community/setup-dlang@v1 | |
| with: | |
| compiler: ${{ matrix.dc }} | |
| - uses: actions/checkout@v2 | |
| - name: Build | |
| run: | | |
| dub build | |
| build-nix: | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@v18 | |
| with: | |
| extra-conf: | | |
| extra-experimental-features = nix-command flakes | |
| - name: Setup Nix cache | |
| uses: DeterminateSystems/magic-nix-cache-action@v11 | |
| - name: Build DFeed with Nix | |
| run: nix build --show-trace --print-build-logs | |
| - name: Run flake checks | |
| run: nix flake check --show-trace --print-build-logs |