mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-26 17:57:59 +00:00
55d5223338
> WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
67 lines
2 KiB
YAML
67 lines
2 KiB
YAML
# CodeQL semantic code analysis engine
|
||
|
||
name: "CodeQL"
|
||
|
||
on:
|
||
push:
|
||
branches: [ master ]
|
||
pull_request:
|
||
# The branches below must be a subset of the branches above
|
||
branches: [ master ]
|
||
schedule:
|
||
- cron: '39 2 * * 5'
|
||
|
||
jobs:
|
||
analyze:
|
||
name: Analyze
|
||
runs-on: ubuntu-latest
|
||
permissions:
|
||
actions: read
|
||
contents: read
|
||
security-events: write
|
||
|
||
strategy:
|
||
fail-fast: false
|
||
matrix:
|
||
language: [ 'cpp', 'python' ]
|
||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
||
# Learn more about CodeQL language support at https://git.io/codeql-language-support
|
||
|
||
steps:
|
||
- name: Checkout repository
|
||
uses: actions/checkout@v2
|
||
with:
|
||
# just fetching 1 commit is not enough for setuptools-scm, so we fetch all
|
||
fetch-depth: 0
|
||
|
||
# Initializes the CodeQL tools for scanning.
|
||
- name: Initialize CodeQL
|
||
uses: github/codeql-action/init@v1
|
||
with:
|
||
languages: ${{ matrix.language }}
|
||
# If you wish to specify custom queries, you can do so here or in a config file.
|
||
# By default, queries listed here will override any specified in a config file.
|
||
# Prefix the list here with "+" to use these queries and those in the config file.
|
||
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
||
|
||
- name: Cache pip
|
||
uses: actions/cache@v2
|
||
with:
|
||
path: ~/.cache/pip
|
||
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.d/development.txt') }}
|
||
restore-keys: |
|
||
${{ runner.os }}-pip-
|
||
${{ runner.os }}-
|
||
|
||
# ℹ️ Command-line programs to run using the OS shell.
|
||
# 📚 https://git.io/JvXDl
|
||
|
||
- name: Install requirements, build and install Borg
|
||
run: |
|
||
sudo apt-get update
|
||
sudo apt-get install libacl1-dev
|
||
pip3 install -r requirements.d/development.txt
|
||
pip3 install -e .
|
||
|
||
- name: Perform CodeQL Analysis
|
||
uses: github/codeql-action/analyze@v1
|