Skip to content

Simplify GitHub actions #115

Simplify GitHub actions

Simplify GitHub actions #115

Workflow file for this run

name: On Push
on:
push:
branches:
- main
paths-ignore: [ 'Doc/**', 'Flights/**', 'Html/**', 'Images/**', 'Localdoc/**', 'Scenarios/**', 'Textures/**', 'Textures2/**']
pull_request:
branches:
- main
paths-ignore: [ 'Doc/**', 'Flights/**', 'Html/**', 'Images/**', 'Localdoc/**', 'Scenarios/**', 'Textures/**', 'Textures2/**']
jobs:
build:
name: Push
strategy:
fail-fast: false
matrix:
architecture: [x64, x86]
os: [windows-2022]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- run: dir /S /B
- name: Build
uses: ./.github/actions/build
timeout-minutes: 60
with:
architecture: ${{ matrix.architecture }}