Merge pull request #1 from InputUsername/github/actions-support

Add CI builds support
This commit is contained in:
Koen Bolhuis 2021-08-30 13:01:51 +02:00 committed by GitHub
commit 15e2a86819
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

19
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: CI builder
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: CI builder for listenbrainz-rs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Perform build of listenbrainz-rs
run: cargo build --verbose
- name: Run unit tests for listenbrain-rs
run: cargo test --verbose