chore(deps): bump tempfile from 3.13.0 to 3.14.0 #145
Workflow file for this run
This file contains 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 xdg-desktop-portal-luminous (nix) | |
on: [push, pull_request] | |
jobs: | |
nix: | |
name: "Build xdg-desktop-portal-luminous" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout xdg-desktop-portal-luminous | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: install nix | |
uses: cachix/install-nix-action@v30 | |
with: | |
install_url: https://nixos.org/nix/install | |
extra_nix_config: | | |
auto-optimise-store = true | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
experimental-features = nix-command flakes | |
- name: Setup meson | |
run: | | |
nix develop --command meson build | |
- name: Exec ninja | |
run: | | |
nix develop --command ninja -C build |