mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 09:22:41 +03:00
Merge branch 'master' of github.com:luna/basegl
Original commit: 5e433c8499
This commit is contained in:
commit
cb5e6ce515
10
gui/.github/workflows/build.yml
vendored
10
gui/.github/workflows/build.yml
vendored
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user