Skip to content

Commit

Permalink
Merge pull request #163 from rust-embedded/merge-queue
Browse files Browse the repository at this point in the history
Merge queue
  • Loading branch information
burrbull authored Oct 2, 2023
2 parents 1ffaf7c + 012538e commit 5ad2e00
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 12 deletions.
10 changes: 0 additions & 10 deletions .github/bors.toml

This file was deleted.

12 changes: 11 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,20 @@ env:

on:
push:
branches: [ staging, trying, master ]
branches: master
pull_request:
merge_group:

jobs:
python-ci:
name: Python-CI
runs-on: ubuntu-latest
needs: [test, check]
if: always()
steps:
- name: Done
run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'

test:
name: Test
runs-on: ubuntu-latest
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/rust-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,20 @@ env:

on:
push:
branches: [ staging, trying, master ]
branches: master
pull_request:
merge_group:

jobs:
rust-ci:
name: Rust-CI
runs-on: ubuntu-latest
needs: [build, test, test_convert, clippy, format, check]
if: always()
steps:
- name: Done
run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'

build:
name: Build
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5ad2e00

Please sign in to comment.