Improve general documentation around the webpage #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@ricardo/AddSolverTests | |
python_ci: | |
runs-on: ubuntu-latest | |
name: Run Python CI 🐍 | |
steps: | |
- uses: ricardoleal20/pymath_compute/.github/actions/python_ci@ricardo/AddSolverTests | |
tests_ci: | |
runs-on: ubuntu-latest | |
name: Run tests 🧪 | |
steps: | |
- uses: ricardoleal20/pymath_compute/.github/actions/tests_ci@ricardo/AddSolverTests |