diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..5a351eb --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +name: main + +on: + push: + branches: + - 'main' + +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