Skip to content

Bump rexml from 3.2.5 to 3.3.9 #389

Bump rexml from 3.2.5 to 3.3.9

Bump rexml from 3.2.5 to 3.3.9 #389

Workflow file for this run

name: Swift
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
DANGER:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup Ruby
uses: ruby/[email protected]
with:
ruby-version: 3.1.2
- name: Install blunder and install deps.
run: |
gem install bundler
bundle install
- name: Run danger
run: |
bundle exec danger
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SPM:
runs-on: macos-12
steps:
- uses: maxim-lobanov/[email protected]
with:
xcode-version: latest
- uses: actions/[email protected]
- name: Test
run: swift test
POD:
runs-on: macos-11
steps:
- uses: actions/[email protected]
- name: Lint
run: pod lib lint
CARTHAGE:
runs-on: macos-12
steps:
- uses: maxim-lobanov/[email protected]
with:
xcode-version: latest
- uses: actions/[email protected]
- name: Build
run: carthage build --no-skip-current --use-xcframeworks
# - name: Archive
# run: carthage archive
# - uses: actions/[email protected]
# with:
# name: SwiftQueue
# path: SwiftQueue.framework.zip
XCODE:
runs-on: macos-12
steps:
- uses: maxim-lobanov/[email protected]
with:
xcode-version: latest
- uses: actions/[email protected]
- name: Build
run: xcodebuild -project "SwiftQueue.xcodeproj" -scheme "SwiftQueue macOS" -destination "arch=x86_64" -configuration Debug ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test -enableCodeCoverage YES | xcpretty
- uses: codecov/[email protected]