removed some unused imports #44
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: CI | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-2019] | |
steps: | |
- name: checkout sources | |
uses: actions/checkout@v2 | |
with: | |
ref: main | |
- name: setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
architecture: 'x64' | |
- name: install deps | |
run: python -m pip install -r requirements-build-exe.txt | |
- name: build release | |
run: python cx_setup.py build | |
- name: upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: wt_client_replay_parser_${{ matrix.os }} | |
path: build/ |