Skip to content

Commit

Permalink
🔮 MySecret pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
FelipeFTN committed Feb 4, 2023
1 parent 07028e6 commit 9dded00
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 76 deletions.
76 changes: 0 additions & 76 deletions .github/workflows/codeql.yml

This file was deleted.

41 changes: 41 additions & 0 deletions .github/workflows/myPipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "🍷 MySecret Pipeline"

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
analyze:
name: 🔎 Analyze
runs-on: ${{ matrix.os }}

permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'ruby' ]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- name: 🧿 Checkout repository
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: ⚡ Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}

- name: 🪄 Build
uses: github/codeql-action/autobuild@v2

- name: ✨ Code Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"

0 comments on commit 9dded00

Please sign in to comment.