Skip to content

Updating GH action permissions #3

Updating GH action permissions

Updating GH action permissions #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
schedule:
- cron: '0 10 * * *'
jobs:
build:
name: "Package stability ${{ matrix.stability }}"
runs-on: ubuntu-latest
permissions:
- contents: read

Check failure on line 19 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 19, Col: 7): A sequence was not expected

Check failure on line 19 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 19, Col: 7): A sequence was not expected
strategy:
matrix:
stability: [ 'stable', 'lowest' ]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Build Container
run: make build
- name: Install Dependencies
run: COMPOSER_STABILITY=${{ matrix.stability }} make install
- name: Run Linter
run: make lint
- name: Run Static Analysis
run: make stan
- name: Run Tests
run: make test