Skip to content

Commit

Permalink
Reenable lints
Browse files Browse the repository at this point in the history
  • Loading branch information
dlubarov committed Jan 10, 2024
1 parent c8def39 commit 5945902
Showing 1 changed file with 37 additions and 37 deletions.
74 changes: 37 additions & 37 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,40 +40,40 @@ jobs:
working-directory: valida
run: cargo test --verbose

# lints:
# name: Lints
# runs-on: ubuntu-latest
#
# steps:
# - name: Checkout Plonky3
# uses: actions/checkout@v4
# with:
# repository: Plonky3/Plonky3
# path: Plonky3
#
# - name: Checkout Valida
# uses: actions/checkout@v4
# with:
# path: valida
#
# - name: Install nightly toolchain
# uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: nightly
# components: rustfmt, clippy
#
# - name: Run cargo fmt
# uses: actions-rs/cargo@v1
# working-directory: valida
# with:
# command: fmt
# args: --all -- --check
#
# # TODO: Enforce clippy at some point...
# #- name: Run cargo clippy
# # uses: actions-rs/cargo@v1
# # working-directory: valida
# # with:
# # command: clippy
# # args: --all-features --all-targets -- -D warnings -A incomplete-features
lints:
name: Lints
runs-on: ubuntu-latest

steps:
- name: Checkout Plonky3
uses: actions/checkout@v4
with:
repository: Plonky3/Plonky3
path: Plonky3

- name: Checkout Valida
uses: actions/checkout@v4
with:
path: valida

- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: rustfmt, clippy

- name: Run cargo fmt
uses: actions-rs/cargo@v1
working-directory: valida
with:
command: fmt
args: --all -- --check

# TODO: Enforce clippy at some point...
#- name: Run cargo clippy
# uses: actions-rs/cargo@v1
# working-directory: valida
# with:
# command: clippy
# args: --all-features --all-targets -- -D warnings -A incomplete-features

0 comments on commit 5945902

Please sign in to comment.