Attempt to normalize phone numbers with doubled prefix+countrycode (X… #428
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
name: Test macOs build | |
on: | |
workflow_dispatch: | |
push: | |
tags-ignore: | |
- '[0-9]*' | |
branches: | |
- master | |
paths-ignore: | |
- '**/README.md' | |
- '**/autoversion.h' | |
- '.github/workflows/*.yml' | |
# This allows a subsequently queued workflow run to interrupt previous runs | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
do-build-tests: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare | |
run: | | |
brew update | |
- name: Build | |
run: | | |
brew install --HEAD --formula homebrew/signalbackup-tools.rb | |
brew test homebrew/signalbackup-tools.rb |