delete current workflows

DreamingCodes committed Mar 23, 2025 at 11:28 UTC 6297a49b69a33abc3b0475fc186a24486b3a597f
3 files changed -118
.github/workflows/audit.yml deleted
-32
@@ -1,32 +0,0 @@
1 -name: Audit
2 -
3 -on:
4 - schedule:
5 - - cron: '0 0 * * *'
6 - push:
7 - branches:
8 - - main
9 - paths:
10 - - ".github/workflows/audit.yml"
11 - - "**/Cargo.lock"
12 - - "**/Cargo.toml"
13 - pull_request:
14 - branches:
15 - - main
16 - paths:
17 - - ".github/workflows/audit.yml"
18 - - "**/Cargo.lock"
19 - - "**/Cargo.toml"
20 -
21 -concurrency:
22 - group: ${{ github.workflow }}-${{ github.ref }}
23 - cancel-in-progress: true
24 -
25 -jobs:
26 - audit:
27 - runs-on: ubuntu-latest
28 - steps:
29 - - uses: actions/checkout@v4
30 - - uses: rustsec/audit-check@v1
31 - with:
32 - token: ${{ secrets.GITHUB_TOKEN }}
.github/workflows/clippy.yml deleted
-53
@@ -1,53 +0,0 @@
1 -name: Check
2 -
3 -on:
4 - push:
5 - branches:
6 - - main
7 - paths:
8 - - ".github/workflows/check.yml"
9 - - "**/*.rs"
10 - - "**/Cargo.toml"
11 - pull_request:
12 - branches:
13 - - main
14 - paths:
15 - - ".github/workflows/check.yml"
16 - - "**/*.rs"
17 - - "**/Cargo.toml"
18 -
19 -concurrency:
20 - group: ${{ github.workflow }}-${{ github.ref }}
21 - cancel-in-progress: true
22 -
23 -jobs:
24 - fmt:
25 - runs-on: ubuntu-latest
26 -
27 - steps:
28 - - uses: actions/checkout@v4
29 - - uses: dtolnay/rust-toolchain@stable
30 - with:
31 - components: rustfmt
32 - - run: cargo fmt --all -- --check
33 -
34 - clippy:
35 - strategy:
36 - fail-fast: false
37 - matrix:
38 - platform: [ubuntu-latest, macos-latest, windows-latest]
39 -
40 - runs-on: ${{ matrix.platform }}
41 -
42 - steps:
43 - - uses: actions/checkout@v4
44 - - uses: dtolnay/rust-toolchain@stable
45 - with:
46 - components: clippy
47 - - name: install webkit2gtk
48 - if: matrix.platform == 'ubuntu-latest'
49 - run: |
50 - sudo apt-get update
51 - sudo apt-get install -y webkit2gtk-4.1
52 - - uses: Swatinem/rust-cache@v2
53 - - run: cargo clippy --all-targets --all-features -- -D warnings
.github/workflows/test.yml deleted
-33
@@ -1,33 +0,0 @@
1 -name: Test
2 -
3 -on:
4 - push:
5 - branches:
6 - - main
7 - pull_request:
8 - branches:
9 - - main
10 -
11 -concurrency:
12 - group: ${{ github.workflow }}-${{ github.ref }}
13 - cancel-in-progress: true
14 -
15 -jobs:
16 - test:
17 - strategy:
18 - fail-fast: false
19 - matrix:
20 - platform: [ubuntu-latest, macos-latest, windows-latest]
21 -
22 - runs-on: ${{ matrix.platform }}
23 -
24 - steps:
25 - - uses: actions/checkout@v4
26 - - uses: dtolnay/rust-toolchain@stable
27 - - name: install webkit2gtk
28 - if: matrix.platform == 'ubuntu-latest'
29 - run: |
30 - sudo apt-get update
31 - sudo apt-get install -y webkit2gtk-4.1
32 - - uses: Swatinem/rust-cache@v2
33 - - run: cargo test --all-targets --all-features -- -D warnings