ash-molten/.github/workflows/ci.yaml
Louis Pilfold 7b89b27dde
Update careers link (#38)
* Update careers link

* Enable verbose build output

* Disable verbose output

* Enable verbose output again

Co-authored-by: Marnix Kuijs <Marnix.Kuijs@embark-studios.com>
2020-12-07 16:51:39 +01:00

64 lines
1.6 KiB
YAML

on: [push, pull_request]
name: CI
jobs:
lint:
name: Lint
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_12.1.app
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
# make sure all code has been formatted with rustfmt
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check --color always
# run clippy to verify we have no warnings
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --features pre-built -- -D warnings
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: EmbarkStudios/cargo-deny-action@v1
test-source:
name: Test (source build)
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_12.1.app
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: build
test:
name: Test (pre-built)
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_12.1.app
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --features pre-built