Skip to content

Rewrite it in rust #266

Rewrite it in rust

Rewrite it in rust #266

Workflow file for this run

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
- run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt-get install libasound2-dev
- uses: actions-rust-lang/setup-rust-toolchain@v1
inputs:

Check failure on line 28 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 28, Col: 9): Unexpected value 'inputs'
toolchain: nightly
- 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