Fix version php_modules/pdo_sqlsrv & php_modules/sqlsrv for php 7.4 #324
Workflow file for this run
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
--- | |
# ------------------------------------------------------------------------------------------------- | |
# Job Name | |
# ------------------------------------------------------------------------------------------------- | |
name: lint | |
# ------------------------------------------------------------------------------------------------- | |
# When to run | |
# ------------------------------------------------------------------------------------------------- | |
on: | |
# Runs on Pull Requests | |
workflow_dispatch: | |
pull_request: | |
# ------------------------------------------------------------------------------------------------- | |
# What to run | |
# ------------------------------------------------------------------------------------------------- | |
jobs: | |
lint: | |
name: "Lint" | |
runs-on: ubuntu-latest | |
steps: | |
# ------------------------------------------------------------ | |
# Setup repository | |
# ------------------------------------------------------------ | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# ------------------------------------------------------------ | |
# Lint repository | |
# ------------------------------------------------------------ | |
- name: Lint Files | |
run: | | |
make lint-files | |
- name: Lint Yaml | |
run: | | |
make lint-yaml |