Skip to content

Add the config folder into the release. #85

Add the config folder into the release.

Add the config folder into the release. #85

Workflow file for this run

name: Build BACKEND
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install required packages
working-directory: ./backend
run: |
sudo apt update
sudo apt install -y pkg-config libudev-dev libasound2-dev
- name: Run BACKEND cargo build
working-directory: ./backend
run: cargo build --verbose