add nextcloud vm test #261
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: "Test" | |
on: | |
pull_request: | |
push: | |
branches: [ "main" ] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
extra-conf: "system-features = nixos-test benchmark big-parallel kvm" | |
- name: Setup Caching | |
uses: cachix/cachix-action@v12 | |
with: | |
name: selfhostblocks | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Run tests | |
run: | | |
nix run github:Mic92/nix-fast-build -- \ | |
--skip-cached --no-nom \ | |
--flake ".#checks.$(nix eval --raw --impure --expr builtins.currentSystem)" | |
- name: Test building docs | |
run: | | |
nix \ | |
--print-build-logs \ | |
--option keep-going true \ | |
--show-trace \ | |
build .#manualHtml |