Skip to content

Commit

Permalink
Merge branch 'master' into feature/simple_subscribe
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavrax authored Jul 31, 2023
2 parents 08f7b63 + 8a2f34a commit 25c7b6f
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 11 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/commands-handler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
process:
name: Process command
if: github.event.issue.pull_request && endsWith(github.repository, '-private') != true
runs-on: ubuntu-latest
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
steps:
- name: Check referred user
id: user-check
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ on:
jobs:
check-release:
name: Check release required
runs-on: ubuntu-latest
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
if: github.event.pull_request.merged && endsWith(github.repository, '-private') != true
outputs:
release: ${{ steps.check.outputs.ready }}
Expand All @@ -27,7 +29,9 @@ jobs:
token: ${{ secrets.GH_TOKEN }}
publish:
name: Publish package
runs-on: ubuntu-latest
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
needs: check-release
if: needs.check-release.outputs.release == 'true'
steps:
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ env:
jobs:
tests:
name: Unit tests
runs-on: ubuntu-latest
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -34,7 +36,9 @@ jobs:
# uses: ./.github/.release/actions/actions/utils/fast-jobs-failure
acceptance-tests:
name: Acceptance tests
runs-on: ubuntu-latest
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
steps:
- name: Checkout project
uses: actions/checkout@v3
Expand Down Expand Up @@ -63,7 +67,9 @@ jobs:
retention-days: 7
all-tests:
name: Tests
runs-on: ubuntu-latest
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
needs: [tests, acceptance-tests]
steps:
- name: Tests summary
Expand Down
20 changes: 15 additions & 5 deletions .github/workflows/run-validations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ jobs:

linters:
name: Launch all cargo linters to check condition of the code
runs-on: ubuntu-latest
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -68,7 +70,9 @@ jobs:
cargo-deny:
name: Check Cargo crate dependencies
runs-on: ubuntu-latest
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
strategy:
matrix:
checks:
Expand All @@ -84,7 +88,9 @@ jobs:

wasm-target:
name: Check if Web Assembly target compiles as expected
runs-on: ubuntu-latest
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
steps:
- uses: actions/checkout@v3

Expand All @@ -102,7 +108,9 @@ jobs:

no_std-target:
name: Check if `no_std` target compiles as expected
runs-on: ubuntu-latest
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
steps:
- uses: actions/checkout@v3

Expand All @@ -127,7 +135,9 @@ jobs:

all-validations:
name: Validations
runs-on: ubuntu-latest
runs-on:
group: Default Larger Runners
labels: ubuntu-latest-m
needs: [linters, cargo-deny, wasm-target, no_std-target]
steps:
- name: Validations summary
Expand Down

0 comments on commit 25c7b6f

Please sign in to comment.