notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 05f36c81b3f0dbd42b1a1d58f140607992bc2ce4
parent 45c104786b07f03225ba3d98b02f64911898ea6c
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 28 Nov 2024 11:50:24 -0800

github: run ci on pushes to master as well

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
M.github/workflows/rust.yml | 11+++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml @@ -1,7 +1,14 @@ -on: [pull_request] - name: CI +on: + push: + branches: + - master + - ci + pull_request: + branches: + - "*" + jobs: fmt: name: Rustfmt