.github/workflows/main.yml #289
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
on: [push] | |
jobs: | |
ClangFormatCheck: | |
runs-on: ubuntu-20.04 | |
name: check clang format | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Check clang format | |
run: ./.github/automation/clang-format.sh | |
shell: bash | |
ci_test_job: | |
runs-on: ubuntu-20.04 | |
name: Test for xbyak_translator_aarch64 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Test action step | |
uses: ./.github/actions/test_action |