From 105d02b086c9a61e79427a80203646f1399e3135 Mon Sep 17 00:00:00 2001 From: Aitor Ruano <45633475+c0dearm@users.noreply.github.com> Date: Fri, 24 Jan 2020 10:53:54 +0100 Subject: [PATCH] Update and rename ci.yml to rust.yml --- .github/workflows/{ci.yml => rust.yml} | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) rename .github/workflows/{ci.yml => rust.yml} (89%) diff --git a/.github/workflows/ci.yml b/.github/workflows/rust.yml similarity index 89% rename from .github/workflows/ci.yml rename to .github/workflows/rust.yml index c935ba4..e3d884b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/rust.yml @@ -1,6 +1,6 @@ on: [push, pull_request] -name: Continuous Integration +name: Rust jobs: check: @@ -77,3 +77,12 @@ jobs: - uses: codecov/codecov-action@v1.0.5 with: 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 }}