Skip to content

πŸ“š 🧰 Update README.md and CI #4

πŸ“š 🧰 Update README.md and CI

πŸ“š 🧰 Update README.md and CI #4

Workflow file for this run

name: 🚨 Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: πŸ§ͺ Test
runs-on: macos-13
steps:
- name: πŸ—„οΈ Checkout Code
uses: actions/checkout@v3
- name: 🧰 Select Xcode Version
run: sudo xcode-select -s "/Applications/Xcode_15.0.app/Contents/Developer"
- name: πŸ§ͺ Run tests
run: xcodebuild test -scheme "swift-nibbles-Package" -testPlan "swift-nibbles-Package" -destination "OS=17.0,name=iPhone 15 Pro"
- name: πŸ“Š Upload Coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
swift: true