Skip to content

Commit 0d25037

Browse files
authored
Merge branch 'development' into issue-28-new-types
2 parents f391ae9 + 936c8a0 commit 0d25037

File tree

2 files changed

+407
-390
lines changed

2 files changed

+407
-390
lines changed

.github/workflows/build.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: build
2+
on: [push]
3+
jobs:
4+
varuh-build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- run: echo "\U0001f389 The job was automatically triggered by a ${{ github.event_name }} event."
8+
- run: echo "\U0001f427 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
9+
- run: echo "\U0001f50e The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
10+
- name: Check out repository code
11+
uses: actions/checkout@v3
12+
- run: echo "\U0001f4a1 The ${{ github.repository }} repository has been cloned to the runner."
13+
- run: echo "\U0001f5a5\ufe0f The workflow is now ready to test your code on the runner."
14+
- name: List files in the repository
15+
run: |
16+
ls ${{ github.workspace }}
17+
- run: echo "\U0001f34f This job's status is ${{ job.status }}."
18+
- name: Build code
19+
run: |
20+
cd ${{ github.workspace }} && make

0 commit comments

Comments
 (0)