Skip to content

Commit 01b11d2

Browse files
authored
Create meson_build_and_run (#1553)
1 parent cd8173c commit 01b11d2

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/meson_build_and_run

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Meson Build
2+
uses: BSFishy/meson-build@v1.0.3
3+
4+
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
5+
on: [push]
6+
7+
jobs:
8+
Explore-GitHub-Actions:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- run: echo " The job was automatically triggered by a ${{ github.event_name }} event."
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v1
14+
- uses: BSFishy/meson-build@v1.0.3
15+
with:
16+
action: build
17+
action: test
18+
action: tidy
19+
20+
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
21+
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
22+
- name: Check out repository code
23+
uses: actions/checkout@v4
24+
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
25+
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
26+
- name: List files in the repository
27+
run: |
28+
ls ${{ github.workspace }}
29+
- run: echo "🍏 This job's status is ${{ job.status }}."

0 commit comments

Comments
 (0)