Skip to content

Commit

Permalink
Add build_and_test action
Browse files Browse the repository at this point in the history
  • Loading branch information
JumpyLionnn authored Feb 7, 2024
1 parent bc57395 commit 2d05a37
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: build and test

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

jobs:
build:

runs-on: ubuntu-latest


steps:
- uses: actions/checkout@v3
- uses: abel0b/[email protected]
with:
version: "5.0.0-beta2"
- name: premake
run: premake gmake2
- name: make
run: make
- name: Running tests
run: bin/Debug/Tests/Tests

0 comments on commit 2d05a37

Please sign in to comment.