diff options
author | Li Jin <dragon-fly@qq.com> | 2021-02-23 15:36:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 15:36:47 +0800 |
commit | 2f071fc283553e12baf60248fdf21a39d90a6fdf (patch) | |
tree | 852fc0bb86698031b74f908bff14932c1400e24c | |
parent | fba0e92eef2f49f7318d7a18e3e6b7b04d16de80 (diff) | |
download | yuescript-2f071fc283553e12baf60248fdf21a39d90a6fdf.tar.gz yuescript-2f071fc283553e12baf60248fdf21a39d90a6fdf.tar.bz2 yuescript-2f071fc283553e12baf60248fdf21a39d90a6fdf.zip |
Create ubuntu.yml
-rw-r--r-- | .github/workflows/ubuntu.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml new file mode 100644 index 0000000..cef75ed --- /dev/null +++ b/.github/workflows/ubuntu.yml | |||
@@ -0,0 +1,17 @@ | |||
1 | name: Ubuntu | ||
2 | |||
3 | on: | ||
4 | push: | ||
5 | branches: [ master ] | ||
6 | pull_request: | ||
7 | branches: [ master ] | ||
8 | workflow_dispatch: | ||
9 | |||
10 | jobs: | ||
11 | build: | ||
12 | name: Build & Test | ||
13 | runs-on: ubuntu-latest | ||
14 | steps: | ||
15 | - uses: actions/checkout@v1 | ||
16 | - name: build-test | ||
17 | run: make test | ||