Skip to content

Add continous build

Add continous build #6

Workflow file for this run

name: Test
on: push
jobs:
test1:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
steps:
- uses: actions/cache@v4
with:
path: innosetup-6.3.3.exe
key: innosetup.exe_6.3.3
- run: wget https://files.jrsoftware.org/is/6/innosetup-6.3.3.exe
# test2:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/cache@v4
# with:
# path: innosetup-6.3.3.exe
# key: innosetup.exe_6.3.3
# - run: wget https://files.jrsoftware.org/is/6/innosetup-6.3.3.exe
#
# test3:
# needs: test2
# runs-on: macos-latest
# steps:
# - uses: actions/cache@v4
# with:
# path: innosetup-6.3.3.exe
# key: innosetup.exe_6.3.3
# - run: wget https://files.jrsoftware.org/is/6/innosetup-6.3.3.exe