Initial commit. #6
This file contains 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
#***************************************************************************** | |
# ci.yaml | |
# | |
# This file contains the Github actions based CI building and automated | |
# testing on pushes and pull requests | |
# | |
# Author : Gary Ash <gary.ash@icloud.com> | |
# Created : 6-Jan-2025 7:21pm | |
# Modified : | |
# | |
# Copyright © 2024 By Gary Ash All rights reserved. | |
#***************************************************************************** | |
name: CI | |
on: | |
push: | |
branches: [ "main", "develop" ] | |
pull_request: | |
branches: [ "main", "develop" ] | |
jobs: | |
build: | |
name: Build and Test default scheme | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run testing workflow | |
run: | | |
sh BuildEnv/ci.sh |