Skip to content

Merge pull request #2 from LAMPSPUC/add_start_docs #4

Merge pull request #2 from LAMPSPUC/add_start_docs

Merge pull request #2 from LAMPSPUC/add_start_docs #4

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Julia 1.8
uses: julia-actions/setup-julia@v1
with:
julia-version: 1.8
project: .
- name: Install dependencies and run tests
run: |
julia --color=yes -e 'import Pkg; Pkg.build()'
julia --color=yes -e 'import Pkg; Pkg.activate("."); Pkg.instantiate(); Pkg.test()'