Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
idugalic committed Dec 8, 2023
2 parents 07730ae + 572da6f commit 96e6e4b
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build&Test

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = ["Ivan Dugalic <[email protected]>"]
[dependencies]
fmodel-rust = "0.4.0"
async-trait = "0.1.74"
actix-cors = "0.6.4"
actix-cors = "0.6.5"
actix-web = "4.4.0"
actix-rt = "2.9.0"
serde = {version = "1.0.193", features = ["derive"]}
Expand Down
6 changes: 6 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
]
}

0 comments on commit 96e6e4b

Please sign in to comment.