-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (26 loc) · 786 Bytes
/
ci.yaml
File metadata and controls
31 lines (26 loc) · 786 Bytes
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
name: Continuous Integration Workflow 👾
# Controls when the action will run. We only want that this action to happens when
# we open a pull request that points to main
on:
pull_request:
branches:
- "main"
# ----------------------------------- #
# DEFINE THE JOBS #
# ----------------------------------- #
jobs:
rust_ci:
runs-on: ubuntu-latest
name: Run Rust CI 🦀
steps:
- uses: ricardoleal20/pymath_compute/.github/actions/rust_ci
python_ci:
runs-on: ubuntu-latest
name: Run Python CI 🐍
steps:
- uses: ricardoleal20/pymath_compute/.github/actions/python_ci
tests_ci:
runs-on: ubuntu-latest
name: Run tests 🧪
steps:
- uses: ricardoleal20/pymath_compute/.github/actions/tests_ci