Skip to content

Commit

Permalink
disable CI
Browse files Browse the repository at this point in the history
  • Loading branch information
HectorMalot committed Dec 1, 2023
1 parent b8e280d commit dbf2643
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
name: Continuous Integration
# name: Continuous Integration

on: push
# on: push

env:
CARGO_TERM_COLOR: always
# env:
# CARGO_TERM_COLOR: always

jobs:
test:
runs-on: ubuntu-latest
name: CI
steps:
- uses: actions/checkout@v3
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: cargo test
run: cargo test
# uncomment to enable clippy linter
# - name: cargo clippy
# run: cargo clippy -- -D warnings
# uncomment to enable format linter
# - name: cargo fmt
# run: cargo fmt --check
# jobs:
# test:
# runs-on: ubuntu-latest
# name: CI
# steps:
# - uses: actions/checkout@v3
# - name: Set up cargo cache
# uses: actions/cache@v3
# continue-on-error: false
# with:
# path: |
# ~/.cargo/bin/
# ~/.cargo/registry/index/
# ~/.cargo/registry/cache/
# ~/.cargo/git/db/
# target/
# key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
# restore-keys: ${{ runner.os }}-cargo-
# - name: cargo test
# run: cargo test
# # uncomment to enable clippy linter
# # - name: cargo clippy
# # run: cargo clippy -- -D warnings
# # uncomment to enable format linter
# # - name: cargo fmt
# # run: cargo fmt --check

0 comments on commit dbf2643

Please sign in to comment.