Prechádzať zdrojové kódy

Merge pull request #65 from norio-nomura/update-ci

Update CI
Norio Nomura 4 rokov pred
rodič
commit
5040873c21

+ 1 - 1
.github/workflows/swiftpm.yml

@@ -21,7 +21,7 @@ jobs:
       fail-fast: false
       matrix:
         xcode_version: ['11.3.1', '11.7', '12']
-    runs-on: macOS-10.15
+    runs-on: macos-10.15
     env:
       DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app
     steps:

+ 2 - 2
.github/workflows/xcodebuild.yml

@@ -25,7 +25,7 @@ jobs:
         xcode_version: ['11.3.1', '11.7', '12']
         xcode_flags: ['-scheme Base32 -enableCodeCoverage YES -parallel-testing-enabled NO test']
         xcode_flags_for_build_only: ['-scheme Base32 build']
-    runs-on: macOS-10.15
+    runs-on: macos-10.15
     env:
       DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app
     steps:
@@ -44,6 +44,6 @@ jobs:
         run: xcodebuild ${{ matrix.xcode_flags_for_build_only }} -sdk watchsimulator | xcpretty
         shell: bash
       - name: Codecov
-        if: matrix.xcode_version == '12'
+        if: matrix.xcode_version == '11.7'
         run: curl -s https://codecov.io/bash | bash -s -- -t ${{ secrets.CODECOV_TOKEN }}
         shell: bash