⚗️ Change read keypress scheme (#11) #30
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: Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
workflow_dispatch: | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
name: Check | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup aqua | |
uses: aquaproj/aqua-installer@v3.0.1 | |
with: | |
aqua_version: v2.28.0 | |
- name: Dump ".mise.toml" | |
id: dump_mise_toml | |
run: | | |
{ | |
echo 'mise_toml<<EOF' | |
cat .mise.toml | |
echo EOF | |
} >> "$GITHUB_OUTPUT" | |
- name: Setup mise | |
uses: jdx/mise-action@v2 | |
with: | |
version: 2024.5.16 | |
install: true | |
cache: true | |
mise_toml: ${{ steps.dump_mise_toml.outputs.mise_toml }} | |
- name: Run check | |
run: task check | |
- name: Try compile | |
run: task compile |