Skip to content

Commit 8adb21b

Browse files
authored
Merge pull request #998 from rust-lang/master
Deploy Master Changes
2 parents a14cc63 + 13d52ef commit 8adb21b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+2851
-3064
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
locales/* linguist-documentation

.github/workflows/main.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
on: [push, pull_request]
3+
env:
4+
RUST_BACKTRACE: 1
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- name: Formatting
11+
run: |
12+
# Install extra rustup components
13+
rustup component add rustfmt
14+
cargo fmt --all -- --check
15+
- name: Correct Nightly Version
16+
# Ensure everything is run and tested with the same nightly version
17+
run: ci/check-nightly-version.sh
18+
- name: Test
19+
run: |
20+
set -euo pipefail
21+
IFS=$'\n\t'
22+
# Check if the code is good
23+
cargo build --all --locked
24+
cargo test --all --locked

.travis.yml

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

0 commit comments

Comments
 (0)