We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2c6ff8 commit 3e77615Copy full SHA for 3e77615
.github/workflows/ci.yml
@@ -8,8 +8,19 @@ jobs:
8
runs-on: ubuntu-latest
9
10
steps:
11
- - uses: actions/checkout@v2
12
- - name: Install packages
13
- run: sudo scripts/ci/install.sh
14
- - name: Build
15
- run: scripts/ci/ci.sh
+ - uses: actions/checkout@v4
+ with:
+ submodules: true
+ lfs: true
+ # - name: Git lfs pull
16
+ # working-directory: consensus-spec-tests
17
+ # run: git lfs pull
18
+ - name: Install Rust
19
+ run: rustup toolchain install stable --profile minimal
20
+ - uses: Swatinem/rust-cache@v2
21
+ - name: Run formatter
22
+ run: cargo fmt --check
23
+ - name: Run clippy
24
+ run: bash scripts/ci/clippy.bash
25
+ - name: Run tests
26
+ run: cargo test --release
0 commit comments