Skip to content

Sync main

Sync main #48

Workflow file for this run

name: CI
on:
pull_request:
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set version in src/assets/VERSION
run: |
echo "0.0.0" > src/assets/VERSION
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose