Update and rename ci.yml to rust.yml

This commit is contained in:
Aitor Ruano 2020-01-24 10:53:54 +01:00 committed by GitHub
parent 80b4a11821
commit 105d02b086
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 1 deletions

View File

@ -1,6 +1,6 @@
on: [push, pull_request] on: [push, pull_request]
name: Continuous Integration name: Rust
jobs: jobs:
check: check:
@ -77,3 +77,12 @@ jobs:
- uses: codecov/codecov-action@v1.0.5 - uses: codecov/codecov-action@v1.0.5
with: with:
token: ${{secrets.CODECOV_TOKEN}} token: ${{secrets.CODECOV_TOKEN}}
security:
name: Security
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}