Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/rainix.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
name: Rainix CI
on: [push]

jobs:
rainix:
strategy:
matrix:
os: [ubuntu-latest]
task: [rainix-sol-test, rainix-sol-static, rainix-sol-legal]
task: [rainix-sol-test, rainix-sol-static, rainix-sol-legal, rainix-sol-artifacts]
fail-fast: false
runs-on: ${{ matrix.os }}
env:
Expand All @@ -16,7 +15,6 @@ jobs:
with:
submodules: recursive
fetch-depth: 0

- uses: nixbuild/nix-quick-install-action@v30
with:
nix_conf: |
Expand All @@ -33,13 +31,12 @@ jobs:
# before trying to save a new cache
# 1G = 1073741824
gc-max-store-size-linux: 1G

- run: nix develop -c rainix-sol-prelude
working-directory: ./lib/rain.interpreter
- run: nix develop -c i9r-prelude
working-directory: ./lib/rain.interpreter

- run: nix develop -c rainix-sol-prelude
- run: nix develop -c rain-dia-prelude
- name: Run ${{ matrix.task }}
env:
ETH_RPC_URL: ${{ secrets.CI_DEPLOY_RPC_URL }}
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ out/
# Docs
docs/

.pre-commit-config.yaml
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Do not ignore shared pre-commit policy file.

Ignoring .pre-commit-config.yaml makes hook behavior non-reproducible across contributors and weakens CI/local parity. This file should generally be versioned.

Suggested fix
-.pre-commit-config.yaml
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
.pre-commit-config.yaml
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.gitignore at line 13, Remove the `.pre-commit-config.yaml` entry from
.gitignore so the shared pre-commit policy file is tracked in the repo; locate
the `.pre-commit-config.yaml` pattern in the .gitignore file and delete that
line to ensure the file is versioned and shared across contributors.


# Dotenv file
.env
Loading
Loading