Feat - Calc for the generability of the Julia fractal #42
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: Rust CI | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: List directory content | |
run: ls -la | |
- name: Build client | |
working-directory: ./client | |
run: cargo build --verbose | |
- name: Build complex | |
working-directory: ./complex | |
run: cargo build --verbose | |
- name: Build shared | |
working-directory: ./shared | |
run: cargo build --verbose | |
- name: Run tests for client | |
working-directory: ./client | |
run: cargo test --verbose | |
- name: Run tests for complex | |
working-directory: ./complex | |
run: cargo test --verbose | |
- name: Run tests for shared | |
working-directory: ./shared | |
run: cargo test --verbose |