Merge pull request #105 from moonlit-melody/typo #156
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: Github Actions | |
on: [push, pull_request] | |
jobs: | |
host_x86: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
compiler: [gcc-10] | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- name: build artifact | |
env: | |
CC: ${{ matrix.compiler }} | |
run: | | |
sh .ci/cross-tool.sh | |
sh .ci/cross-check.sh |