Merge branch 'master' of github.com:luna/basegl

Original commit: 5e433c8499
This commit is contained in:
Wojciech Danilo 2019-10-07 20:33:31 +02:00
commit cb5e6ce515
2 changed files with 9 additions and 9 deletions

View File

@ -7,7 +7,7 @@ on: [push]
jobs:
build:
name: Build Check
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
@ -25,7 +25,7 @@ jobs:
command: check
test:
name: Test Suite
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
@ -38,7 +38,7 @@ jobs:
command: test
fmt:
name: Code Formatting Check
name: Formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
@ -53,7 +53,7 @@ jobs:
args: --all -- --check
clippy:
name: Code Linting Check
name: Linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
@ -68,7 +68,7 @@ jobs:
args: -- -D warnings
coverage:
name: Code Coverage Check
name: Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

View File

@ -20,10 +20,10 @@ To setup the toolchain, please use the [the Rust toolchain installer
](https://rustup.rs/):
```bash
rustup toolchain install nightly # Install the nightly channel.
rustup default nightly # Set it as the default one.
rustup component add rustfmt # Install the code auto-formatter.
rustup component add clippy # Install the linter.
rustup toolchain install nightly-2019-10-03 # Install the nightly channel.
rustup default nightly # Set it as the default one.
rustup component add rustfmt # Install the code auto-formatter.
rustup component add clippy # Install the linter.
```
## Building and testing the project