Skip to content

Commit 8ae7ecc

Browse files
committed
ci: add ci/cd for every push
1 parent 02cc8bd commit 8ae7ecc

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/push.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Push CI/CD
2+
3+
on:
4+
push:
5+
paths:
6+
- "Package.swift"
7+
- "Source/**"
8+
- "Tests/**"
9+
10+
jobs:
11+
test:
12+
runs-on: macos-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v5
16+
17+
- name: Run build
18+
run: swift build
19+
20+
- name: Run tests
21+
run: swift test

0 commit comments

Comments
 (0)