mirror of
https://github.com/rust-embedded/awesome-embedded-rust.git
synced 2024-12-13 11:36:40 +00:00
Merge #328
328: Swap to GHA r=eldruin a=adamgreig The travis CI wasn't even doing anything, but I guess at least this means we can use bors. Co-authored-by: Adam Greig <adam@adamgreig.com>
This commit is contained in:
commit
aaad925057
3 changed files with 19 additions and 15 deletions
2
.github/bors.toml
vendored
2
.github/bors.toml
vendored
|
@ -1,3 +1,3 @@
|
|||
delete_merged_branches = true
|
||||
required_approvals = 1
|
||||
status = ["continuous-integration/travis-ci/push"]
|
||||
status = ["dummy"]
|
||||
|
|
18
.github/workflows/dummy.yml
vendored
Normal file
18
.github/workflows/dummy.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- staging
|
||||
- trying
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
dummy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Succeed
|
||||
run: true
|
14
.travis.yml
14
.travis.yml
|
@ -1,14 +0,0 @@
|
|||
language: rust
|
||||
|
||||
script:
|
||||
- true
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
- staging
|
||||
- trying
|
||||
|
||||
notifications:
|
||||
email:
|
||||
on_success: never
|
Loading…
Reference in a new issue