Skip to content

Commit

Permalink
ci: cleanup ci actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mantricjavier committed Nov 13, 2024
1 parent 9b024a1 commit 6628df5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 28 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/ci-test-lints.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
submodules: recursive

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -57,13 +59,3 @@ jobs:
with:
command: clippy
args: -- -D warnings

- name: Generate Schema
uses: actions-rs/cargo@v1
with:
command: schema
args: --locked

- name: Schema Changes
# fails if any changes not committed
run: git diff --exit-code schema
19 changes: 1 addition & 18 deletions .github/workflows/pr-convcom-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,8 @@ name: Pull request
on: [pull_request]

jobs:
style:
name: Style
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
submodules: recursive

- name: Install stable toolchain and check style
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.80.0
override: true
components: rustfmt
- run: cargo fmt -- --check
check:
name: Check
name: Check conventional commits
runs-on: ubuntu-latest
steps:
- name: Checkout sources
Expand Down

0 comments on commit 6628df5

Please sign in to comment.