Skip to content

Fix serialization and add new fractals #189

Fix serialization and add new fractals

Fix serialization and add new fractals #189

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: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- name: Upload client artifact
uses: actions/upload-artifact@v3
with:
name: client-${{ matrix.os }}
path: |
${{ (matrix.os == 'windows-latest' && 'target/release/client.exe') || 'target/release/client' }}
- name: Upload server artifact
uses: actions/upload-artifact@v3
with:
name: server-${{ matrix.os }}
path: |
${{ (matrix.os == 'windows-latest' && 'target/release/server.exe') || 'target/release/server' }}