-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add ci * format * update name * drop reth
- Loading branch information
Showing
4 changed files
with
70 additions
and
326 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: "check" | ||
on: | ||
pull_request: | ||
push: | ||
branches: [ main ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main' }} | ||
|
||
jobs: | ||
check: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: cachix/install-nix-action@v25 | ||
with: | ||
github_access_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Check nix flake | ||
run: | | ||
nix flake check | ||
- name: Check formatting | ||
run: | | ||
nix run nixpkgs#nixpkgs-fmt -- --check . | ||
- name: Build home-manager configuration | ||
run: | | ||
nix build .#homeConfigurations.vaporif.activationPackage | ||
- name: Test build on different systems | ||
run: | | ||
nix build .#homeConfigurations.vaporif.activationPackage --system aarch64-darwin |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.