From e9e6b9adc686df9c747753d9e93840aacc13b63d Mon Sep 17 00:00:00 2001 From: Zaheer Date: Tue, 1 Mar 2022 10:37:06 +0500 Subject: [PATCH 1/2] Create swift.yml --- .github/workflows/swift.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/swift.yml diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml new file mode 100644 index 0000000..5dbdb4f --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,19 @@ +name: Swift + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v From b2514f8c74aa4b687ee36bd53e6ab83ff518952a Mon Sep 17 00:00:00 2001 From: Zaheer Date: Tue, 1 Mar 2022 10:39:33 +0500 Subject: [PATCH 2/2] Delete swift.yml --- .github/workflows/swift.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/swift.yml diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml deleted file mode 100644 index 5dbdb4f..0000000 --- a/.github/workflows/swift.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Swift - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: macos-latest - - steps: - - uses: actions/checkout@v2 - - name: Build - run: swift build -v - - name: Run tests - run: swift test -v