Merge pull request #1 from astro/ci

CI
This commit is contained in:
polygon - 2022-04-22 20:18:32 +02:00 committed by GitHub
commit 71bed4042f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 0 deletions

19
.github/workflows/update.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: update-flake-lock
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '0 0 * * *' # runs daily at 00:00
jobs:
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v16
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@v8

View File

@ -52,5 +52,8 @@
};
};
defaultPackage.${system} = self.packages.${system}.bevy_mandelbrot;
hydraJobs = builtins.mapAttrs (_: drv: { "${system}" = nixpkgs.lib.hydraJob drv; })
self.packages.${system};
};
}