Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Encoder #139

Merged
merged 18 commits into from
Dec 18, 2024
Merged
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Loom

on:
push:
branches: [main]
branches: [ main ]
pull_request_target:
branches: [main]
branches: [ main ]

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- uses: dtolnay/rust-toolchain@clippy
- name: install taplo
env:
version: "0.9.3"
version: "0.9.3"
run: |
curl -Ls "https://github.com/tamasfe/taplo/releases/download/${{ env.version }}/taplo-full-linux-x86_64.gz" | \
gzip -d > taplo && \
Expand All @@ -130,13 +130,13 @@ jobs:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- uses: dtolnay/rust-toolchain@clippy
with:
toolchain: "1.82"
toolchain: "1.83"
- uses: Swatinem/rust-cache@v2
- uses: arduino/setup-protoc@v3

- run: 'echo "pub const KEY_ENCRYPTION_PWD: [u8; 16] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];" > crates/types/entities/src/private.rs'
# workaround for latest stable rust
- run: cargo +1.82 clippy --all-targets --all-features -- -D warnings
- run: cargo +1.83 clippy --all-targets --all-features -- -D warnings

deny:
if: github.repository == 'dexloom/loom'
Expand Down
Loading
Loading