Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/release.yml → .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,26 @@
name: Release
name: 🚀 CI/CD

on:
pull_request:
branches: [main]
push:
tags: ["v*"]

permissions:
contents: write

jobs:
test:
runs-on: macos-26
steps:
- uses: actions/checkout@v6

- name: Run tests
run: swift test

release:
if: startsWith(github.ref, 'refs/tags/v')
needs: test
runs-on: macos-26
steps:
- uses: actions/checkout@v6
Expand Down
14 changes: 0 additions & 14 deletions .github/workflows/ci.yml

This file was deleted.