Skip to content

Commit fa5e317

Browse files
committed
added SIT to githubaction
1 parent fc1bcb8 commit fa5e317

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
name: GitHub Actions Demo
1+
name: SIT Demo
22
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
33
on: [push]
44
jobs:
55
Explore-GitHub-Actions:
66
runs-on: ubuntu-latest
77
steps:
8-
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
9-
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
10-
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
11-
- name: Check out repository code
12-
uses: actions/checkout@v3
13-
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
14-
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
15-
- name: List files in the repository
8+
- uses: actions/checkout@v2
9+
- name: Set up JDK 1.8
10+
uses: actions/setup-java@v1
11+
with:
12+
java-version: 1.8
13+
14+
- name: Test SIT with cdm
15+
working-directory: SIT
1616
run: |
17-
ls ${{ github.workspace }}
18-
- run: echo "🍏 This job's status is ${{ job.status }}."
17+
echo "Testing SIT with cdm"
18+
make -f Makefile

0 commit comments

Comments
 (0)