Skip to content

Sourcery refactored master branch #30

Sourcery refactored master branch

Sourcery refactored master branch #30

Workflow file for this run

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