Skip to content

ffi: Add support for specifying UTC offset changes in an IR stream. #968

ffi: Add support for specifying UTC offset changes in an IR stream.

ffi: Add support for specifying UTC offset changes in an IR stream. #968

Workflow file for this run

name: "clp-lint"
on: ["pull_request", "push", "workflow_dispatch"]
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
# Cancel in-progress jobs for efficiency
cancel-in-progress: true
jobs:
lint-check:
strategy:
matrix:
os: ["macos-latest", "ubuntu-latest"]
runs-on: "${{matrix.os}}"
steps:
- uses: "actions/checkout@v3"
with:
submodules: "recursive"
- uses: "actions/setup-python@v5"
with:
python-version: "3.11"
- name: "Install task"
shell: "bash"
run: "npm install -g @go-task/cli"
- if: "matrix.os == 'macos-latest'"
name: "Install coreutils (for md5sum)"
run: "brew install coreutils"
- name: "Run lint task"
shell: "bash"
run: "task lint:check"