mirror of
https://github.com/poem-web/poem.git
synced 2026-01-25 04:18:25 +00:00
20 lines
365 B
YAML
20 lines
365 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request: {}
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Check format
|
|
run: cargo fmt --all -- --check
|
|
- name: Build
|
|
run: cargo build --all --verbose
|
|
- name: Run tests with async-std
|
|
run: cargo test --all --verbose
|