Skip to content

Commit

Permalink
Create build-test-all.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nejohnson authored Mar 27, 2024
1 parent 0a9ab3f commit e0bc927
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-test-all.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: C/C++ CI

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Make all dasms
run: |
cd src
make
- name: Run all tests
run: |
cd test
for f in *; do pushd $f; make; popd; done

0 comments on commit e0bc927

Please sign in to comment.