Skip to content

Merge pull request #140 from Azure4DevOps/dependabot/github_actions/g… #371

Merge pull request #140 from Azure4DevOps/dependabot/github_actions/g…

Merge pull request #140 from Azure4DevOps/dependabot/github_actions/g… #371

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: ["master"]
pull_request:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
GitVersion:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Fetch all history for all tags and branches
run: git fetch --prune --unshallow
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v1.1.1
with:
versionSpec: "5.x"
- name: Determine Version
uses: gittools/actions/gitversion/execute@v1.1.1
build:
runs-on: ${{ matrix.os }}
# The type of runner that the job will run on
strategy:
fail-fast: false
max-parallel: 99
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5.0.0
with:
# Version range or exact version of Python to use, using SemVer's version range syntax. Reads from .python-version if unset.
python-version: '3.10'
- name: Run a multi-line script
run: |
pip install pre-commit
pre-commit --version
pre-commit run --all-files