Probably we should run tests as part of release?

This commit is contained in:
John Doty 2024-08-12 17:43:17 -07:00
parent df0ca4ce31
commit a7202010d0

View file

@ -84,6 +84,9 @@ jobs:
echo "TARGET_FLAGS=--target ${{ matrix.target }}" >> $GITHUB_ENV
echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV
- name: Run the tests
run: ${{ env.CARGO }} test --verbose --release ${{ env.TARGET_FLAGS }}
- name: Build release binary
run: ${{ env.CARGO }} build --verbose --release ${{ env.TARGET_FLAGS }}