Skip to content

Staging

Staging #80

Workflow file for this run

name: Nix check
permissions: {}
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
push:
branches:
- master
jobs:
nix_check:
runs-on: ubuntu-latest
strategy:
matrix:
packages:
- rdict
- rdict-telegram
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: cachix/install-nix-action@526118121621777ccd86f79b04685a9319637641
with:
extra_nix_config: |
require-sigs = false
substituters = http://127.0.0.1:3000/ https://cache.nixos.org/
- uses: NickCao/github-actions-cache@7f1d29fa10061e17af4301b40918a7500cf83f52
- run: nix flake check
- run: nix build .#${{ matrix.packages }} --print-build-logs