Skip to content

By default, don't replay events when in interactive mode in tests #81

By default, don't replay events when in interactive mode in tests

By default, don't replay events when in interactive mode in tests #81

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1.9', 'nightly']
julia-arch: [x64, x86]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@latest
- name: Run tests with xvfb
run: |
sudo apt-get install xvfb
/usr/bin/xvfb-run -n99 julia --project=. -e 'using Pkg; Pkg.test()'