Skip to content

Commit

Permalink
Workflow change.
Browse files Browse the repository at this point in the history
  • Loading branch information
alyxshang committed Dec 7, 2024
1 parent cbd245e commit c72a45b
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
on: [push]
env:
MANDY_ENV: "production"

name: Mandy Release CI
jobs:
test-matrix:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable

- name: "Build Mandy."
uses: actions-rs/cargo@v1
with:
command: build
args: --release

- name: Windows-specific step
if: runner.os == 'Windows'
shell: bash
run: |
echo "I am a Windows runner!"
#- name: "Rename binary."
# run:

#- name: Archive code coverage results
# uses: actions/upload-artifact@v4
# with:
# name: Mandy Binary
# path: target/test/code-coverage.html

0 comments on commit c72a45b

Please sign in to comment.