diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index bf6b419..7df3328 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -10,16 +10,25 @@ env: CARGO_TERM_COLOR: always jobs: - build: - + build linux: runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Test + run: make test + - name: Build + run: make clean release + - name: Package + run: make package-release + build macos: + runs-on: macos-latest steps: - uses: actions/checkout@v3 + - name: Test + run: make clean test - name: Build run: make clean release - - name: Run tests - run: make test - name: Package run: make package-release