Skip to content

Commit

Permalink
Moved workflows from .github to .github/workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
nayakned committed Jun 11, 2024
1 parent 1fb72d3 commit 2f562d6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-all.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build Open1722 and all the applications

on:
push:
branches: [$default-branch, ci-test]
pull_request:
branches: [$default-branch]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: apt update && apt install -y meson libcmocka0 libcmocka-dev lcov
- name: Run build_all.sh script
run: ./build_all.sh

0 comments on commit 2f562d6

Please sign in to comment.