From 8427cf00681acc6efc3b49cd88b18b5cef48d484 Mon Sep 17 00:00:00 2001 From: Mx Date: Sat, 21 Feb 2026 18:25:32 +0100 Subject: [PATCH] ci: add GitHub Actions workflow to replace Travis CI Agent-Id: agent-ed357e84-6e6c-46a9-89d8-7b6c1e51b1e2 --- .github/workflows/ci.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..8fea1d4 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,28 @@ +name: CI + +on: + push: + branches: + - main + - master + - 'hotfix/**' + - 'release/**' + - 'feature/**' + pull_request: + branches: + - main + - master + - 'hotfix/**' + - 'release/**' + - 'feature/**' + +jobs: + build: + runs-on: macos-latest + steps: + - uses: actions/checkout@v4 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v +