added new option to rcascan to show only APs in range (all channels)… #548
This file contains hidden or 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
| name: C CI | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| os-version: [ ubuntu-latest ] | |
| compiler: [ gcc-latest ] | |
| deps: ['enabled'] | |
| platform: ['x64', 'x86'] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install packages | |
| run: | | |
| sudo apt update | |
| sudo apt install -y libpcap-dev | |
| - name: Make | |
| run: make |