diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml new file mode 100644 index 0000000..a1032cb --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,12 @@ +name: Swift CI +on: [push] + +jobs: + build: + runs-on: macos-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Build and Test + run: | + xcodebuild clean test -project SecurePass.xcodeproj -scheme SecurePass -destination "platform=iOS Simulator,name=Any iOS Simulator Device"