Skip to content

Feat - Calc for the generability of the Julia fractal #43

Feat - Calc for the generability of the Julia fractal

Feat - Calc for the generability of the Julia fractal #43

Workflow file for this run

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