Makefile: revert localtime mapping removal #148
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
--- | |
# | |
# Copyright 2020, Data61/CSIRO | |
# | |
# SPDX-License-Identifier: BSD-2-Clause | |
# | |
name: Lint Code Base | |
on: [pull_request] | |
jobs: | |
build: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # full git history for comparison with other revisions | |
- name: Lint Code Base | |
uses: docker://github/super-linter:slim-v4 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: master | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
LINTER_RULES_PATH: ".linters" | |
VALIDATE_BASH: true | |
VALIDATE_DOCKER_HADOLINT: true | |
VALIDATE_MD: true | |
VALIDATE_YAML: true |