Skip to content

Commit f760248

Browse files
committed
Refactor
1 parent 0094ed8 commit f760248

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

.github/workflows/swift.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
paths-ignore:
7+
- 'README.md'
8+
pull_request:
9+
branches: [ main ]
10+
paths-ignore:
11+
- 'README.md'
12+
13+
jobs:
14+
build:
15+
runs-on: macos-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
20+
- name: Build
21+
run: swift build -v
22+
23+
- name: Run tests
24+
run: swift test -v

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![License](https://img.shields.io/github/license/silkodenis/swiftui-navigation-coordinator.svg)](https://github.com/silkodenis/swiftui-navigation-coordinator/blob/main/LICENSE)
2-
![IOS](https://github.com/silkodenis/swiftui-navigation-coordinator/actions/workflows/ios.yml/badge.svg?branch=main)
2+
![swift](https://github.com/silkodenis/swiftui-navigation-coordinator/actions/workflows/swift.yml/badge.svg?branch=main)
33

44
# SwiftUI Navigation Coordinator
55

0 commit comments

Comments
 (0)