mirror of
https://github.com/Cronocide/wifipumpkin3.git
synced 2025-01-22 19:37:18 +00:00
37 lines
756 B
YAML
37 lines
756 B
YAML
name: Build
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
- beta
|
|
- master
|
|
- tmp-*
|
|
tags:
|
|
- v*
|
|
pull_request:
|
|
|
|
jobs:
|
|
wifipumpkin3:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [3.7]
|
|
os: [ubuntu-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install
|
|
run: |
|
|
python3.7 -m pip install PyQt5==5.14
|
|
python3.7 -c "from PyQt5.QtCore import QSettings; print('done')"
|
|
make install
|
|
- name: Test
|
|
run: make test
|
|
- name: Run
|
|
run: wifipumpkin3 -h
|