Skip to content

Start workflow for cep-85 #7

Start workflow for cep-85

Start workflow for cep-85 #7

Workflow file for this run

name: ci-cep-85
on:
push:
branches:
- 'dev'
- 'feat-*'
- 'release-*'
pull_request:
branches:
- 'dev'
- 'feat-*'
- 'release-*'
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
resources:

Check failure on line 25 in .github/workflows/ci-cep-85.yml

View workflow run for this annotation

GitHub Actions / ci-cep-85

Invalid workflow file

The workflow is not valid. .github/workflows/ci-cep-85.yml (Line: 25, Col: 5): Unexpected value 'resources'
memory: 2048MB
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b #v3.0.2
- uses: Swatinem/rust-cache@cb2cf0cc7c5198d3364b9630e2c3d457f160790c #v1.4.0
- name: Install dependencies
run: sudo apt update && sudo apt install -y build-essential wabt
- name: Setup
run: make prepare
- name: Run clippy and fmt
run: make check-lint
- name: Run tests
run: make test