Skip to content

Commit

Permalink
Create make-single-platform.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GerbenAaltink authored Sep 3, 2024
1 parent 69024fc commit 9d049a8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/make-single-platform.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build and Run

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
BUILD_TYPE: Release

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Build
working-directory: ${{github.workspace}}
run: make build

- name: Test
working-directory: ${{github.workspace}}
run: make run

0 comments on commit 9d049a8

Please sign in to comment.