mirror of
https://github.com/lakinduakash/linux-wifi-hotspot.git
synced 2024-11-22 12:10:12 +00:00
17 lines
282 B
YAML
17 lines
282 B
YAML
name: Build
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Build binaries
|
|
run: |
|
|
sudo apt install -y libgtk-3-dev build-essential cmake gcc g++ pkg-config make
|
|
make
|
|
sudo make install
|