Skip to content

Commit

Permalink
Create build-and-test.yml
Browse files Browse the repository at this point in the history
adds basic build and test CI on PRs
  • Loading branch information
bigbrett authored Apr 2, 2024
1 parent 43165b3 commit 43cbfe3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build and Test

on:
push:
branches: [ 'master', 'main', 'release/**' ]
pull_request:
branches: [ '*' ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: build-and-test-asan-debug
run: make DEBUG=1 ASAN=1 run
- name: build-and-test
run: make run

0 comments on commit 43cbfe3

Please sign in to comment.