Skip to content

[πŸ§ͺ] Test build on refs/heads/dev #6738

[πŸ§ͺ] Test build on refs/heads/dev

[πŸ§ͺ] Test build on refs/heads/dev #6738

Workflow file for this run

name: '[πŸ§ͺ] Test build'
run-name: '[πŸ§ͺ] Test build on `${{ github.ref }}`'
on:
push:
branches:
- master
- dev
pull_request:
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os:
- ubuntu-24.04
- ubuntu-22.04
- macos-14
- macos-13
runs-on: ${{ matrix.os }}
name: '[πŸ§ͺ] Test Build on ${{ matrix.os }}'
steps:
- name: '[πŸ“₯] checkout'
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: '[πŸ‘·] run build script on git repository'
run: |
./build/build.sh --full --debug
- name: '[πŸ”₯] clean and remove git'
run: |
git clean -xdf
rm -rf .git
- name: '[πŸ‘·] run build script on non-git directory'
run: |
./build/build.sh --full --debug
success:
needs: [build]
if: ${{ success() }}
name: '[πŸ§ͺ] Success'
runs-on: ubuntu-latest
steps:
- name: '[πŸ₯³] Success'
run: echo "πŸ₯³ Checks passed successfully!"