Merge remote-tracking branch 'origin/main' into #38
Workflow file for this run
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: feature | |
on: | |
push: | |
branches: | |
- feature/* | |
jobs: | |
build: | |
runs-on: windows-2019 # is needed because the Setup Python task does not work with ubuntu | |
steps: | |
# Checkout the code. | |
- name: check out # is needed to read the files on the root folder of the repo | |
uses: actions/checkout@v3 | |
# Use the build-addin action. | |
- uses: ./.github/actions/build |