aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-09-28 16:35:28 -0500
committerToby Vincent <tobyv13@gmail.com>2022-09-28 16:35:28 -0500
commit29ae86e6fb29cec92651e1f95b3c7067db2414d4 (patch)
tree94c66bcf3584db580722650087355cd2484baa04 /.github/workflows
parent745a731f0d6db97cc48a226a04f19e5b6cf4d2cd (diff)
revert: remove github related files
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml74
1 files changed, 0 insertions, 74 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
deleted file mode 100644
index d3ba2cc..0000000
--- a/.github/workflows/ci.yml
+++ /dev/null
@@ -1,74 +0,0 @@
-name: CI
-
-on:
- push:
- branches:
- - "main"
- - "develop"
- pull_request:
-
-jobs:
- check:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
- - uses: actions-rs/cargo@v1
- with:
- command: check
- args: --workspace --all-features
-
- test:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
- - uses: actions-rs/cargo@v1
- with:
- command: test
- args: --workspace --all-features
-
- lints:
- name: Lints
- runs-on: ubuntu-latest
- steps:
- - name: Checkout sources
- uses: actions/checkout@v2
-
- - name: Install stable toolchain
- uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: stable
- override: true
- components: rustfmt, clippy
-
- - name: Run cargo fmt
- uses: actions-rs/cargo@v1
- with:
- command: fmt
- args: --all -- --check
-
- - name: Run cargo clippy
- uses: actions-rs/cargo@v1
- with:
- command: clippy
- args: --workspace --all-features --no-deps -- -D warnings
-
- clippy_check:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v1
- - run: rustup component add clippy
- - uses: actions-rs/clippy-check@v1
- with:
- token: ${{ secrets.GITHUB_TOKEN }}
- args: --workspace --all-features --no-deps \ No newline at end of file