浏览代码

learning github actions

Matthew R Kasun 4 年之前
父节点
当前提交
0451b4282b
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      .github/workflows/learn-github-actions.yml

+ 10 - 0
.github/workflows/learn-github-actions.yml

@@ -0,0 +1,10 @@
+name: learn-github-actions
+on: [push]
+jobs:
+    check-bats-version:
+        runs-on: ubuntu-latest
+        steps:
+            - uses: actions/checkout@v2
+            - uses: actions/setup-node@v1
+            - run: npm install -g bats
+            - run: bats -v