e93756be20
This commit uses a build cache for the coverage and netxlite github actions. See https://github.com/ooni/probe/issues/2093.
17 lines
325 B
YAML
17 lines
325 B
YAML
# performs several code quality checks
|
|
name: checks
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
jobs:
|
|
perform_code_quality_checks:
|
|
runs-on: "${{ matrix.os }}"
|
|
strategy:
|
|
matrix:
|
|
os: [ "ubuntu-20.04" ]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: ./script/nocopyreadall.bash
|