Builds on Windows and Linux #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [ "main" ] | |
name: Build backend | |
jobs: | |
build: | |
name: Build binary | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@master | |
- name: Install requirements for building binary | |
run: .github/get-build-requirements | |
- name: Build binary | |
run: make | |
- name: Build .deb | |
run: make deb |