feat: 解决一个 python 加载问题 #372
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: Build | |
on: | |
push: | |
branch: 'master' | |
paths-ignore: | |
- '**.md' | |
- 'LICENSE' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
type: [debug, release] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: build ${{ matrix.type }} | |
run: make TYPE=${{ matrix.type }} | |
- name: test ${{ matrix.type }} | |
run: make test-all TYPE=${{ matrix.type }} |