Skip to content

Commit ffe043c

Browse files
authored
Merge pull request #453 from rust-lang/github-actions
ci: switch to github actions
2 parents 7b6ad2c + a744b81 commit ffe043c

File tree

2 files changed

+23
-101
lines changed

2 files changed

+23
-101
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
3+
on: [push, pull_request]
4+
name: CI
5+
6+
jobs:
7+
test:
8+
name: Test
9+
runs-on: ubuntu-latest
10+
steps:
11+
12+
- uses: actions/checkout@master
13+
with:
14+
fetch-depth: 2
15+
16+
- name: Install stable Rust
17+
run: rustup update stable && rustup default stable
18+
19+
- name: Build docs.rs
20+
run: cargo build
21+
22+
- name: Test docs.rs
23+
run: cargo test -- --test-threads=1

azure-pipelines.yml

Lines changed: 0 additions & 101 deletions
This file was deleted.

0 commit comments

Comments
 (0)