소스 검색

Create the Linux Tests workflow

Victor Sigler 6 년 전
부모
커밋
2d7fc8482a
1개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. 14 0
      .github/workflows/linux-tests.yml

+ 14 - 0
.github/workflows/linux-tests.yml

@@ -0,0 +1,14 @@
+name: Test Linux Platform
+on:
+  pull_request:
+    branches:
+        - stable
+
+jobs:
+  Tests:
+    runs-on: ubuntu-latest
+    container: swift:5.1
+    steps:
+      - uses: actions/checkout@v2
+      - name: Run Unit Tests
+        run: swift test