8000 fix Informative error message at macro eval time for extra arguments #48 (#49) · jw3126/ArgCheck.jl@98f69ca · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix Informative error message at macro eval time for extra arguments … #28

fix Informative error message at macro eval time for extra arguments …

fix Informative error message at macro eval time for extra arguments … #28

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.10' # lts
- '1'
- 'nightly'
os:
- ubuntu-latest
# - macOS-latest
- windows-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
show-versioninfo: true
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
0