build: add github CI and badge

This commit is contained in:
Rasmus Schlunsen
2023-01-22 15:50:32 -06:00
committed by Greg Heartsfield
parent b094fbcabd
commit 744d467a28
2 changed files with 41 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
name: Test and build
on:
push:
branches:
- master
jobs:
test_nostr-rs-relay:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update local toolchain
run: |
rustup update
rustup component add clippy
rustup install nightly
- name: Toolchain info
run: |
cargo --version --verbose
rustc --version
cargo clippy --version
# - name: Lint
# run: |
# cargo fmt -- --check
# cargo clippy -- -D warnings
- name: Test
run: |
cargo check
cargo test --all
- name: Build
run: |
cargo build --release