Skip to content

Commit

Permalink
CI Tests
Browse files Browse the repository at this point in the history
* Create test.yml

* Update test.yml

To LTS

* Update test.yml

* Try to fix tests
  • Loading branch information
AlCap23 authored Nov 30, 2023
1 parent da6728b commit 1c9f422
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CI

on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['1']

steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: actions/cache@v3
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1

0 comments on commit 1c9f422

Please sign in to comment.