-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (44 loc) · 1.29 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Run tests
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
version: ['1', 'nightly']
arch: [x64]
os: [ubuntu-latest]
#os: [ubuntu-latest, windows-latest, macOS-latest]
#exclude:
# - os: macOS-latest
# julia-arch: x86
steps:
- uses: actions/checkout@v2
# Set up Python and install Matplotlib
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Matplotlib
run: pip install matplotlib
# Continue with existing Julia setup
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
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
env:
PYTHON: ""
- uses: julia-actions/julia-runtest@v1
env:
PYTHON: ""