Skip to content

add support for other GD related servers (including GDPSes) #53

add support for other GD related servers (including GDPSes)

add support for other GD related servers (including GDPSes) #53

Workflow file for this run

name: Validate build
# Checks if code inside pull requests against 'master' compiles and passes all tests
# Taken from: https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md
on:
push:
branches: master
pull_request:
branches: master
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: check
args: --examples --tests
clippy:
name: Clippy Lints
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features