diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0275727..2531bd5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,20 +32,20 @@ jobs: - name: Setup Rust run: rustup update stable && rustup default stable - - name: Install clippy and rustfmt - run: rustup component add clippy rustfmt +# - name: Install clippy and rustfmt +# run: rustup component add clippy rustfmt - - name: Cargo fmt (check) - run: cargo fmt --all -- --check +# - name: Cargo fmt (check) +# run: cargo fmt --all -- --check - - name: Clippy - shell: bash - run: | - FLAGS="" - if [ "${{ matrix.no-default-features }}" = "true" ]; then FLAGS="$FLAGS --no-default-features"; fi - if [ -n "${{ matrix.features }}" ]; then FLAGS="$FLAGS --features ${{ matrix.features }}"; fi - echo "Running: cargo clippy --all-targets $FLAGS -- -D warnings" - cargo clippy --all-targets $FLAGS -- -D warnings +# - name: Clippy +# shell: bash +# run: | +# FLAGS="" +# if [ "${{ matrix.no-default-features }}" = "true" ]; then FLAGS="$FLAGS --no-default-features"; fi +# if [ -n "${{ matrix.features }}" ]; then FLAGS="$FLAGS --features ${{ matrix.features }}"; fi +# echo "Running: cargo clippy --all-targets $FLAGS -- -D warnings" +# cargo clippy --all-targets $FLAGS -- -D warnings - name: Tests shell: bash diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 836573c..6519099 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -92,20 +92,20 @@ jobs: - name: Setup Rust run: rustup update stable && rustup default stable - - name: Install clippy and rustfmt - run: rustup component add clippy rustfmt - - - name: Cargo fmt (check) - run: cargo fmt --all -- --check - - - name: Clippy - shell: bash - run: | - FLAGS="" - if [ "${{ matrix.no-default-features }}" = "true" ]; then FLAGS="$FLAGS --no-default-features"; fi - if [ -n "${{ matrix.features }}" ]; then FLAGS="$FLAGS --features ${{ matrix.features }}"; fi - echo "Running: cargo clippy --all-targets $FLAGS -- -D warnings" - cargo clippy --all-targets $FLAGS -- -D warnings +# - name: Install clippy and rustfmt +# run: rustup component add clippy rustfmt +# +# - name: Cargo fmt (check) +# run: cargo fmt --all -- --check +# +# - name: Clippy +# shell: bash +# run: | +# FLAGS="" +# if [ "${{ matrix.no-default-features }}" = "true" ]; then FLAGS="$FLAGS --no-default-features"; fi +# if [ -n "${{ matrix.features }}" ]; then FLAGS="$FLAGS --features ${{ matrix.features }}"; fi +# echo "Running: cargo clippy --all-targets $FLAGS -- -D warnings" +# cargo clippy --all-targets $FLAGS -- -D warnings - name: Tests shell: bash