Initial commit

This commit is contained in:
hodasemi 2024-03-11 21:42:08 +01:00
commit 5f99f38a9b
5 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,16 @@
name: Merge Build
run_name: Test successful build on merge request
on:
pull_request:
types: [opened, reopened, edited, review_requested, synchronize]
jobs:
Build:
steps:
- uses: https://github.com/actions/checkout@v3
- uses: https://github.com/dtolnay/rust-toolchain@stable
- name: Build
run: cargo build

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/target
Cargo.lock

8
Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "rust-std-template"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

15
renovate.json Normal file
View file

@ -0,0 +1,15 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"packageRules": [
{
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
}
]
}

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}