Skip to content

Initial action implementation #6

Initial action implementation

Initial action implementation #6

Workflow file for this run

name: setup
on:
pull_request:
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
concurrency:
# only allow one job per PR running
# older pending jobs will be cancelled not to waste CI minutes
# cannot use github.job here https://github.com/community/community/discussions/13496
group: ${{ github.workflow }}-setup-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Chalk
uses: ./
- name: Verify Setup
run: |
set -x
which chalk
which docker
echo 'log_level: "trace"' > /etc/chalk.conf
chalk version
docker version