Skip to content

Add new GH action

Add new GH action #1

Workflow file for this run

name: ubuntu_latest
on: [push]
env:
BUILD_TYPE: Release
jobs:
build:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Ubuntu_Latest",
os: ubuntu-latest
}
steps:
- name: Checkout Repository and Submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: LS
run: ls ${{runner.workspace}}