Skip to content

Fox

Fox #56

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
SUI_FROM_SOURCE: true
steps:
- uses: actions/checkout@v3
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
# if: matrix.os == 'windows-latest'
- name: Build
run: cargo b -vv
- name: Build cli
run: |
cd cli
cargo b -vv