diff --git a/.dotfiles b/.dotfiles index a7273c6..66a9354 160000 --- a/.dotfiles +++ b/.dotfiles @@ -1 +1 @@ -Subproject commit a7273c6fb9b425116c859d70ac344b2e7eed6d95 +Subproject commit 66a9354e4071812a8f14e251ae99c3fa44f53cf3 diff --git a/.github/workflows/code-tests.yml b/.github/workflows/code-tests.yml new file mode 100644 index 0000000..9126415 --- /dev/null +++ b/.github/workflows/code-tests.yml @@ -0,0 +1,23 @@ +name: Run Tests + +on: + pull_request: + paths: + - '**.swift' + +jobs: + all-tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: swift-actions/setup-swift@v2 + with: + swift-version: "6.1" + + - name: Run Unit Tests + uses: GetAutomaApp/opensource-actions/swifttesting@main + with: + compose: "false" + # env: + # FLY_METRICS_TOKEN: ${{ secrets.FLY_METRICS_TOKEN }} diff --git a/Tests/SwiftWebDriverTests/todo_test_api b/Tests/SwiftWebDriverTests/todo_test_api deleted file mode 100644 index e69de29..0000000