Skip to content

Commit a8ac8ba

Browse files
author
Ioannis Giagkiozis
committed
ci for windows and macos
1 parent e3f2af6 commit a8ac8ba

File tree

2 files changed

+41
-22
lines changed

2 files changed

+41
-22
lines changed

.github/workflows/linux.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/release_ci.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Plotly.rs CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
build_linux:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Build
19+
run: cargo build --all-features --verbose
20+
- name: Run tests
21+
run: cargo test --workspace --exclude plotly_orca --verbose
22+
23+
build_windows:
24+
runs-on: windows-latest
25+
26+
steps:
27+
- uses: actions/checkout@v2
28+
- name: Build
29+
run: cargo build --all-features --verbose
30+
- name: Run tests
31+
run: cargo test --workspace --exclude plotly_orca --verbose
32+
33+
build_macos:
34+
runs-on: macos-latest
35+
36+
steps:
37+
- uses: actions/checkout@v2
38+
- name: Build
39+
run: cargo build --all-features --verbose
40+
- name: Run tests
41+
run: cargo test --workspace --exclude plotly_orca --verbose

0 commit comments

Comments
 (0)