Skip to content

patch: Version 1.4.3 #31

patch: Version 1.4.3

patch: Version 1.4.3 #31

Workflow file for this run

name: Pull request
on:
pull_request:
types: [opened, edited, reopened, synchronize]
branches:
- main
jobs:
check_title:
name: Check title
runs-on: ubuntu-latest
steps:
- uses: Slashgear/[email protected]
with:
regexp: '(patch|minor|major): +.+$'
helpMessage: 'Your PR title does not match the required format. It should start with "patch:", "minor:", or "major:" followed by the description.'
test:
name: Test
runs-on: macos-latest
needs: check_title
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure
run: |
export LANG=en_US.UTF-8
eval "$(/opt/homebrew/bin/brew shellenv)"
brew install xcbeautify
brew unlink xcbeautify
brew link xcbeautify
- name: Run tests
run: |
xcodebuild \
-scheme EasyCode \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=${{ vars.SIMULATOR }}' | xcbeautify