Skip to content

Commit

Permalink
Add self-test workflow and bors config
Browse files Browse the repository at this point in the history
  • Loading branch information
Nemo157 committed Sep 4, 2022
1 parent b0fa631 commit c27d8bc
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/self-test.yml
@@ -0,0 +1,18 @@
jobs:
pull_request:
uses: ./.github/workflows/pull_request.yml
staging:
uses: ./.github/workflows/staging.yml
nightly:
uses: ./.github/workflows/nightly.yml
success:
needs: [pull_request, staging, nightly]
runs-on: ubuntu-latest
steps:
- run: true

on:
pull_request:
branches: [prīmum]
push:
branches: [staging, trying]
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
/target
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Cargo.toml
@@ -0,0 +1,7 @@
[package]
name = "self-test"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
1 change: 1 addition & 0 deletions bors.toml
@@ -0,0 +1 @@
status = ["success"]
3 changes: 3 additions & 0 deletions src/main.rs
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

0 comments on commit c27d8bc

Please sign in to comment.