Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Szegoo committed Apr 16, 2024
1 parent 395d9e7 commit a258a6b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 29 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
fmt:
Expand Down Expand Up @@ -55,6 +59,21 @@ jobs:
- name: Check Code
run: cargo check

check-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup

- name: Install psvm
run: |
cargo install --git https://github.com/paritytech/psvm psvm
- name: Check Dependency Versions
run: |
chmod +x ./scripts/check-dependency-versions.sh
./scripts/check-dependency-versions.sh
code_coverage:
runs-on: ubuntu-latest
steps:
Expand Down
29 changes: 0 additions & 29 deletions .github/workflows/dependencies.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true

jobs:
block-production:
runs-on: ubuntu-latest
Expand Down

0 comments on commit a258a6b

Please sign in to comment.