ci: updates to latest ubuntu-24.04 macos-14 (#3777) #100
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: lint | |
on: # yamllint disable-line rule:truthy | |
push: # non-tagged pushes to master | |
branches: | |
- master | |
tags-ignore: | |
- '*' | |
paths: | |
- '**/*.md' | |
- '.github/workflows/*.yml' | |
- './build-bin/*lint' | |
- ./build-bin/mlc_config.json | |
pull_request: # pull requests targeted at the master branch. | |
branches: | |
- master | |
paths: | |
- '**/*.md' | |
- '.github/workflows/*.yml' | |
- './build-bin/*lint' | |
- ./build-bin/mlc_config.json | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-24.04 # newest available distribution, aka noble | |
# skip commits made by the release plugin | |
if: "!contains(github.event.head_commit.message, 'maven-release-plugin')" | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Lint | |
run: | | |
build-bin/configure_lint | |
build-bin/lint |