Skip to content

Commit

Permalink
Add triggers for GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
IgWod committed May 29, 2024
1 parent cefddaa commit f0d1d51
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
name: build-and-run-mambo
run-name: Running GitHub Action
on: [push]
run-name: Building and running MAMBO triggered by ${{ github.actor }} on ${{ github.ref }}
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
jobs:
build-and-run-mambo:
strategy:
matrix:
os: [focal]
arch: [ {os: arm64, qemu: aarch64}, {os: riscv64, qemu: riscv64}, {os: armhf, qemu: arm} ]
fail-fast: false
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit f0d1d51

Please sign in to comment.