Skip to content

fix: go to core before testing coverage #12

fix: go to core before testing coverage

fix: go to core before testing coverage #12

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-core:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build core
run: cargo build --release --manifest-path core/Cargo.toml
- name: Test core
run: cargo test --manifest-path core/Cargo.toml
# build-server:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Build server
# run: cargo build --release --manifest-path server/Cargo.toml
# - name: Test server
# run: cargo test --manifest-path server/Cargo.toml
build-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build web
run: cargo build --release --manifest-path web/Cargo.toml
- name: Test web
run: cargo test --manifest-path web/Cargo.toml