Skip to content

Commit

Permalink
add gh action
Browse files Browse the repository at this point in the history
fix gh
  • Loading branch information
silabs-ThibautC committed Dec 16, 2024
1 parent 325d802 commit 73e18ab
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install GCC
run: sudo apt-get install -y gcc

- name: Build
run: ./build.sh
17 changes: 17 additions & 0 deletions actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install GCC
run: sudo apt-get install -y gcc

- name: Build
run: build

0 comments on commit 73e18ab

Please sign in to comment.