mirror of
https://github.com/htrefil/rkvm.git
synced 2025-01-15 03:41:32 +01:00
17 lines
252 B
YAML
17 lines
252 B
YAML
name: Release
|
|
|
|
on: [push]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
ubuntu:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
- name: Run tests
|
|
run: cargo test --verbose
|