Move everything to a workspace

This commit is contained in:
Thomas Eizinger
2023-05-08 20:15:35 +02:00
committed by Gabi
parent 8e5c3bc225
commit f9b6e96b5e
8 changed files with 6 additions and 4 deletions

View File

@@ -22,6 +22,6 @@ updates:
schedule:
interval: "weekly"
- package-ecosystem: "cargo"
directory: "relay/"
directory: "rust/"
schedule:
interval: "weekly"

View File

@@ -2,12 +2,12 @@ name: Rust CI
on:
pull_request:
paths:
- 'relay/**'
- 'rust/**'
push:
branches:
- master
paths:
- 'relay/**'
- 'rust/**'
# Cancel old workflow runs if new code is pushed
concurrency:
@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./relay
working-directory: ./rust
steps:
- uses: actions/checkout@v2
- run: cargo fmt -- --check

2
rust/Cargo.toml Normal file
View File

@@ -0,0 +1,2 @@
[workspace]
members = ["relay"]