Skip to content

Commit

Permalink
workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
vil committed Aug 2, 2023
1 parent f13b59b commit 675177e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ name: Build executables

on:
workflow_dispatch: # Manually triggered event
pull_request: # Trigger the workflow on push or pull request,

jobs:
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
Expand All @@ -28,9 +29,9 @@ jobs:
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
Expand Down

0 comments on commit 675177e

Please sign in to comment.