mirror of
https://github.com/lightsoutgames/godot-tts
synced 2024-11-09 01:55:57 +00:00
20 lines
283 B
YAML
20 lines
283 B
YAML
|
name: Rust
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Build
|
||
|
run: cargo build --verbose
|
||
|
- name: Run tests
|
||
|
run: cargo test --verbose
|