Merge pull request #11 from zarath/build_check

Build check
pull/185/head
Holger Müller 2020-06-12 19:42:59 +02:00 zatwierdzone przez GitHub
commit e239ced6ed
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -15,8 +15,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8]
# os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, ]
# python-version: [3.7, 3.8]
python-version: [3.7, ]
steps:
- uses: actions/checkout@v2
@ -50,14 +52,14 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install dependencies and pyinstall
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install PyInstaller
- name: Build binary
run: |
pyinstall nanovna-saver.py
pyinstaller nanovna-saver.py
- name: Archive production artifacts
uses: actions/upload-artifact@v1