CI #262
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
permissions: | |
# needed for action-gh-release | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Git describe | |
id: ghd | |
uses: proudust/gh-describe@v2 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- run: cargo build --release | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Run integration tests | |
env: | |
SAND_TEST_TARGET: release | |
run: | | |
echo "Testing $(target/release/sand version)" | |
python -m pip install --upgrade pip | |
pip install pytest | |
pip install deepdiff | |
pytest test.py | |
# TODO, will need to cargo build --release | |
# - name: Create release archive | |
# env: | |
# GIT_DESCRIBE: ${{ steps.ghd.outputs.describe }} | |
# run: ./create_release_archive.sh | |
# if: startsWith(github.ref, 'refs/tags/v') | |
# - name: Release | |
# uses: softprops/action-gh-release@v2 | |
# if: startsWith(github.ref, 'refs/tags/v') | |
# with: | |
# files: release/sand-*-x86_64-linux.tar.zst |