Skip to content

Remove Manifest.toml #3

Remove Manifest.toml

Remove Manifest.toml #3

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags: '*'
pull_request:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: Tests
runs-on: ubuntu-latest
env:
DISPLAY: ':0'
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: 1
arch: x64
- uses: julia-actions/cache@v2
- name: Install pkgs dependencies
run: julia --project=@. -e 'using Pkg; Pkg.test("Trace", coverage=true)'
- uses: julia-actions/julia-runtest@v1