Kaynağa Gözat

Create the Linux Tests workflow

Victor Sigler 6 yıl önce
ebeveyn
işleme
2d7fc8482a
1 değiştirilmiş dosya ile 14 ekleme ve 0 silme
  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