Bump actions/checkout from 4 to 5 #11
This file contains hidden or 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
| # ---------------------------------------------------------------------------- | |
| # GitHub Actions workflow to test building all code samples. | |
| # | |
| # See docs: | |
| # - https://castle-engine.io/github_actions | |
| # - https://docs.github.com/en/actions | |
| # ---------------------------------------------------------------------------- | |
| name: Build All | |
| on: [push, pull_request] | |
| jobs: | |
| test-fpc: | |
| name: FPC stable | |
| runs-on: ubuntu-latest | |
| container: kambi/castle-engine-cloud-builds-tools:cge-none | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: make all | |
| test-fpc331: | |
| name: FPC 3.3.1 | |
| runs-on: ubuntu-latest | |
| container: kambi/castle-engine-cloud-builds-tools:cge-none-fpc331 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: make all-fpc331 | |
| delphi_test: | |
| name: Delphi | |
| strategy: | |
| matrix: | |
| host-label: [ | |
| delphi_12 | |
| ] | |
| runs-on: ${{ matrix.host-label }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Delphi Build (Win32) | |
| run: make all-delphi-win32 | |
| - name: Delphi Build (Win64) | |
| run: make all-delphi-win64 |