-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Formatting and ECLINT issue (#80)
- Loading branch information
1 parent
16bf460
commit 1c34dfa
Showing
3 changed files
with
29 additions
and
26 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
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 |
---|---|---|
|
@@ -39,12 +39,12 @@ jobs: | |
- name: Semver release | ||
shell: bash | ||
run: | | ||
git config user.email "[email protected]" | ||
git config user.name "Superposition Bot" | ||
cog bump --auto --skip-ci-override "[skip ci]" | ||
git config user.email "[email protected]" | ||
git config user.name "Superposition Bot" | ||
cog bump --auto --skip-ci-override "[skip ci]" | ||
- name: Push code to main | ||
shell: bash | ||
run: | | ||
git push origin main | ||
git push origin --tags | ||
git push origin main | ||
git push origin --tags |
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 |
---|---|---|
@@ -1,24 +1,24 @@ | ||
name: "CI Nix" | ||
on: | ||
# Run only when pushing to main branch, and making PRs | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
# Run only when pushing to main branch, and making PRs | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-14] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: DeterminateSystems/nix-installer-action@main | ||
with: | ||
extra-conf: | | ||
trusted-public-keys = cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= | ||
substituters = https://cache.garnix.io?priority=41 https://cache.nixos.org/ | ||
- uses: yaxitech/nix-install-pkgs-action@v3 | ||
with: | ||
packages: "github:srid/nixci" | ||
- run: nixci build | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-14] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: DeterminateSystems/nix-installer-action@main | ||
with: | ||
extra-conf: | | ||
trusted-public-keys = cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= | ||
substituters = https://cache.garnix.io?priority=41 https://cache.nixos.org/ | ||
- uses: yaxitech/nix-install-pkgs-action@v3 | ||
with: | ||
packages: "github:srid/nixci" | ||
- run: nixci build |