Bump rexml from 3.3.6 to 3.3.9 in the bundler group (#80) #131
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: check | |
on: | |
pull_request: | |
push: | |
branches: main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: macos-latest | |
env: | |
MINT_PATH: ${{ github.workspace }}/mint | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache Mint packages | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.MINT_PATH }} | |
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }} | |
restore-keys: ${{ runner.os }}-mint- | |
- name: Setup Scripts Directory | |
run: ./setup-scripts.sh | |
- name: Setup check | |
run: | | |
brew update | |
brew install clang-format@19 | |
brew install mint | |
mint bootstrap | |
- name: Style | |
run: scripts/style.sh test-only | |
- name: Whitespace | |
run: scripts/check_whitespace.sh | |
- name: Filename spaces | |
run: scripts/check_filename_spaces.sh | |
- name: Copyrights | |
run: scripts/check_copyright.sh | |
- name: Imports | |
run: scripts/check_imports.swift |