From d54670ab8857e94fea4617864e2c77d58a6e4fe3 Mon Sep 17 00:00:00 2001 From: William Date: Thu, 15 May 2025 09:05:24 +0200 Subject: [PATCH] feat(code-tests.yml): created workflow file to swiftwebdriver tests in ci --- .dotfiles | 2 +- .github/workflows/code-tests.yml | 23 +++++++++++++++++++++++ Tests/SwiftWebDriverTests/todo_test_api | 0 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/code-tests.yml delete mode 100644 Tests/SwiftWebDriverTests/todo_test_api 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