Skip to content

Commit

Permalink
Merge branch 'pioneer_uploader_tool' of https://github.com/kleo-53/tr…
Browse files Browse the repository at this point in the history
…ik-studio-pioneer-tool into pioneer_uploader_tool
  • Loading branch information
kleo-53 committed Sep 12, 2023
2 parents de17ccb + cf0efaf commit 68c8c28
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build and Test

on:
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10

- name: Install dependencies
run: pip install -r requirements.txt

- name: Format code with Black
run: black pioneer-uploader.py

- name: Build with PyInstaller
run: pyinstaller --onefile pioneer-uploader.py

- name: Publish artifact
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v2
with:
name: publish-artifact
path: dist

- name: Run tests
run: pytest

0 comments on commit 68c8c28

Please sign in to comment.