diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c2dad045..adc29ce3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,9 +1,5 @@ name: CI -on: - push: - branches: - - staging - - trying +on: merge_group jobs: @@ -71,3 +67,10 @@ jobs: with: components: rustfmt - run: cargo fmt --all --check + + done: + name: Complete + runs-on: ubuntu-latest + needs: [test, i586, no_std, fmt] + steps: + - run: exit 0 diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index ba9912cc..f107547e 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -27,3 +27,10 @@ jobs: components: rustfmt - uses: actions/checkout@v4 - run: cargo fmt --all --check + + done: + name: Complete + runs-on: ubuntu-latest + needs: [test, fmt] + steps: + - run: exit 0 diff --git a/Cargo.toml b/Cargo.toml index f97bc68d..eb02c182 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ name = "num-traits" version = "0.2.17" readme = "README.md" build = "build.rs" -exclude = ["/bors.toml", "/ci/*", "/.github/*"] +exclude = ["/ci/*", "/.github/*"] edition = "2018" rust-version = "1.31" diff --git a/bors.toml b/bors.toml deleted file mode 100644 index 20713ee2..00000000 --- a/bors.toml +++ /dev/null @@ -1,16 +0,0 @@ -status = [ - "Test (1.31.0)", - "Test (1.35.0)", - "Test (1.37.0)", - "Test (1.38.0)", - "Test (1.44.0)", - "Test (1.46.0)", - "Test (1.53.0)", - "Test (1.62.0)", - "Test (stable)", - "Test (beta)", - "Test (nightly)", - "Test (i586)", - "No Std", - "Format", -]