diff options
| author | n1c00o <n@nc0.fr> | 2023-02-06 22:28:15 +0100 |
|---|---|---|
| committer | Nicolas <34602094+n1c00o@users.noreply.github.com> | 2023-02-06 22:35:54 +0100 |
| commit | 9df1a89a6982caec9a51e378bd783b976cc6eb62 (patch) | |
| tree | 49c4a98815390ce1cfab085e5bc6ac312bae4638 | |
| parent | e656ab8e1a03955c45552d06b211b43183e94793 (diff) | |
Remove old CI
| -rw-r--r-- | .github/workflows/ci.yml | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index fef285b..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: CI -on: - pull_request: - branches: - - main - push: - branches: - - main -jobs: - rust: - name: Rust CI - continue-on-error: true - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - timeout-minutes: 360 - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - name: Checkout the repository - - uses: actions/cache@v3 - name: Setup caching - with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - target/ - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - - uses: actions-rs/toolchain@v1 - name: Install the Rust toolchain - with: - toolchain: nightly - override: true - components: clippy, rustfmt - - uses: actions-rs/clippy-check@v1 - name: Style check - with: - token: ${{ secrets.GITHUB_TOKEN }} - args: --all-features - - uses: actions-rs/cargo@v1 - name: Run tests - with: - command: test - args: --workspace - - uses: actions-rs/cargo@v1 - name: Build in release mode - with: - command: build - args: --workspace --release
\ No newline at end of file |
