mirror of
https://github.com/chatmail/core.git
synced 2026-04-02 05:22:14 +03:00
setup minimal github action
Just so we can experiment with it on branches
This commit is contained in:
committed by
GitHub
parent
c6369b1c5a
commit
d330d890c0
15
.github/workflows/rust.yml
vendored
Normal file
15
.github/workflows/rust.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
name: Rust
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
||||
Reference in New Issue
Block a user