Skip to content

Add the function groebner_with_change_matrix #318

Add the function groebner_with_change_matrix

Add the function groebner_with_change_matrix #318

name: Performance Check
on:
push:
branches:
- 'master'
tags: '*'
pull_request:
jobs:
build-and-benchmark:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1']
julia-arch: [x64]
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Julia
uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- name: Build project
uses: julia-actions/julia-buildpkg@latest
- run: julia -e '
using Pkg;
Pkg.add(["ArgParse", "Test", "TestSetExtensions", "Random", "GitHubActions", "Logging", "AbstractAlgebra", "Nemo"]);
using GitHubActions, Logging;
global_logger(GitHubActionsLogger());
include("benchmark/CI-scripts/runtests.jl")'