Sourcery refactored master branch #30
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
name: Check PR | |
on: [pull_request] | |
jobs: | |
Build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest, macOS-latest] | |
steps: | |
- name: Obtain latest version of the repository | |
uses: actions/checkout@v1 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.x' | |
- name: Install requirements with PIP | |
run: pip install dnslib requests pyinstaller | |
- name: Build DNS-Server | |
run: pyinstaller --onefile RiiConnect24-DNS-Server.spec | |
- name: Publish Build Artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: ${{ matrix.os }} | |
path: dist |