Files
pezkuwi-telemetry/.github/workflows/backend.yml
T
Chevdor 8ed8d01426 Documentation (#259)
* Documentation

- bump up frontend version (to trigger the CI)
- bump up the backend version (to trigger the CI)
- add some docker related doc
- add CI badges

* Fix CI step name

* Add screenshot
2020-04-24 12:49:52 +02:00

25 lines
470 B
YAML

name: Backend CI
on:
push:
paths:
- 'backend/**'
- '!frontend/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
working-directory: ./backend
run: cargo build --verbose
- name: Run tests
working-directory: ./backend
run: cargo test --verbose
- name: Build release and call executable
working-directory: ./backend
run: cargo run --release -- --help