ci: split arm64 and amd64 build steps for faster compilation #1
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
name: Lint | |
on: | |
pull_request: | |
jobs: | |
sanity-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check workflow files | |
env: | |
ACTIONLINT_VSN: 1.6.25 | |
run: | | |
wget https://github.com/rhysd/actionlint/releases/download/v${ACTIONLINT_VSN}/actionlint_${ACTIONLINT_VSN}_linux_amd64.tar.gz | |
tar zxf actionlint_${ACTIONLINT_VSN}_linux_amd64.tar.gz actionlint | |
# TODO: enable shellcheck when all the current issues are fixed | |
./actionlint -color \ | |
-shellcheck= |