diff options
Diffstat (limited to '.gitea/workflows/tests.yaml')
-rw-r--r-- | .gitea/workflows/tests.yaml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitea/workflows/tests.yaml b/.gitea/workflows/tests.yaml new file mode 100644 index 0000000..ed1485d --- /dev/null +++ b/.gitea/workflows/tests.yaml @@ -0,0 +1,14 @@ +name: Tests +run-name: Run Tests +on: [push] + +jobs: + Test-CodeCov: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: swift-actions/setup-swift@v2 + with: + swift-version: "5.9" + - name: Run Tests + run: swift test --enable-code-coverage |