From fa0c9b3f98eea8d93a092bd9660ecd0768a3c531 Mon Sep 17 00:00:00 2001 From: Sayan Nandan Date: Sun, 26 Jul 2020 12:25:09 +0530 Subject: [PATCH] Improve workflow Also added information on branches --- .github/workflows/rust.yml | 4 ++-- CONTRIBUTING.md | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3c13d1be..d1b7604e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -2,9 +2,9 @@ name: Rust on: push: - branches: [ master ] + branches: [ '*' ] pull_request: - branches: [ master ] + branches: [ '*' ] env: CARGO_TERM_COLOR: always diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e39c667a..bd10bcd9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,6 +25,9 @@ The project root has three main directories: * `libcore` : This contains function, structs, ... used by both the `cli` and the `server` * `server` : This contains code for the main database server +### Branches +The `next` branch is the _kind of_ stable branch which contains the latest changes. However, for most purposes, you should always download the sources from the tags. Usually, when a feature is worked on, the work will be done on a separate branch, and then it will be merged into next. + ## Steps 1. Fork the repository