Skip to content

Document Base.conj override and add function to reconstruct poly from coeffs and exponent matrix #491

Document Base.conj override and add function to reconstruct poly from coeffs and exponent matrix

Document Base.conj override and add function to reconstruct poly from coeffs and exponent matrix #491

Workflow file for this run

name: Check formatting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@latest
with:
version: "^1.4"
- uses: actions/checkout@v2
- name: Install JuliaFormatter and format
run: |
julia -e 'using Pkg; Pkg.add(PackageSpec(name="JuliaFormatter", version="1.0.33"))'
julia -e 'using JuliaFormatter; format(["./src", "./test"], verbose=true)'
- name: Format check
run: |
julia -e '
out = Cmd(`git diff --name-only`) |> read |> String
if out == ""
exit(0)
else
@error "Some files have not been formatted !!!"
write(stdout, out)
exit(1)
end'