feat: ✨ 【笔记本内联器】现在在路径不存在时,会尝试裁剪掉头尾的引号 #15
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: CI | |
on: | |
- push | |
- pull_request | |
env: | |
JULIA_NUM_THREADS: auto | |
jobs: | |
test: | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
# Versions below 1.5 cause of compat@`include`: | |
- "1.7" | |
- "1" # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia. | |
- "nightly" | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
- windows-latest | |
arch: | |
- x64 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
# - uses: actions/cache@v1 | |
# env: | |
# cache-name: cache-artifacts | |
# with: | |
# path: ~/.julia/artifacts | |
# key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | |
# restore-keys: | | |
# ${{ runner.os }}-test-${{ env.cache-name }}- | |
# ${{ runner.os }}-test- | |
# ${{ runner.os }}- | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-runtest@latest | |
# continue-on-error: ${{ matrix.version == 'nightly' }} | |
# - uses: julia-actions/julia-processcoverage@v1 | |
# - name: Upload datas to Codecov | |
# uses: codecov/codecov-action@v1 | |
# with: | |
# file: lcov.info |