Skip to content

making staging directory #52

making staging directory

making staging directory #52

Workflow file for this run

name: Rust
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Test
run: make test
- name: Build
run: make clean build
- name: Package
run: make package
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Test
run: make clean test
- name: Build
run: make clean build
- name: Package
run: make package