sculptor/.github/workflows/rust.yml
shiroyashik 0103c31d69
The Assets update is now working properly on Linux
Also added a new Workflow and disabled the Rust workflow.
Redesigned Dockerfile
2024-09-21 15:37:16 +03:00

24 lines
354 B
YAML

name: Rust
on: workflow_dispatch
# push:
# branches: [ "master" ]
# pull_request:
# branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose