chore(deps): bump rexml from 3.2.8 to 3.3.6 (#1360) #220
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Swift project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift | |
name: test macOS | |
on: | |
workflow_call: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref_type != 'tag' }} | |
jobs: | |
macos_build: | |
runs-on: macos-14 | |
steps: | |
- name: Set Xcode 15.3.0 | |
run: sudo xcode-select -s /Applications/Xcode_15.3.0.app/Contents/Developer | |
- name: Print Current Xcode | |
run: xcode-select -p | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: swift test | |