Skip to content

Commit

Permalink
Add build workflow for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
wagga40 committed Dec 2, 2023
1 parent 2131569 commit 277f0c9
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/generate_builds.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Generate build

on:
workflow_dispatch:
push:
branches:
- "main"
schedule:
- cron: '0 1 * * *'

jobs:
build-and-upload:
name: Build and upload
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- build: linux
os: ubuntu-latest
target: x86_64-unknown-linux-musl

- build: windows-gnu
os: windows-latest
target: x86_64-pc-windows-gnu
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: pip install -r requirements.txt

0 comments on commit 277f0c9

Please sign in to comment.