-
-
Notifications
You must be signed in to change notification settings - Fork 84
39 lines (35 loc) · 1.07 KB
/
rs-tests.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
on:
pull_request:
name: "rs-tests"
jobs:
build:
name: Testing on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
# - os: windows-2022 # Windows is complete nonsense. If someone wants to figure out how to make tests run there go ahead.
- os: macos-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Load .env file
uses: xom9ikk/dotenv@v2
with:
path: ./
- name: Windows rust toolchain
if: runner.os == 'Windows'
run: |
find . -name rust-toolchain.toml -exec echo rm {} \;
rustup component add rust-src --toolchain nightly-2023-10-05-x86_64-pc-windows-gnu
rustup default nightly-2023-10-05-x86_64-pc-windows-gnu
- name: Test Fractindex
run: |
cd core/rs/fractindex-core
cargo test --features=loadable_extension
- name: Test Core
run: |
cd core/rs/core
cargo test --features=loadable_extension