Skip to content

Bump dependabot/fetch-metadata from 1.6.0 to 2.0.0 #26

Bump dependabot/fetch-metadata from 1.6.0 to 2.0.0

Bump dependabot/fetch-metadata from 1.6.0 to 2.0.0 #26

Workflow file for this run

name: CI
on: [ pull_request ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
include:
- os: ubuntu-latest
- os: macOS-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Set up Homebrew
if: matrix.os == 'ubuntu-latest'
uses: Homebrew/actions/setup-homebrew@master
- run: brew --version
- run: brew install --verbose --formula --build-from-source ./martin.rb
- run: martin --version
- run: martin-cp --version
- run: mbtiles --version
# This final step is needed to mark the whole workflow as successful
# Don't change its name - it is used by the merge protection rules
done:
name: CI Finished
runs-on: ubuntu-latest
needs: [ test ]
steps:
- name: Finished
run: echo "CI finished successfully"