Skip to content

Update CI

Update CI #6

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
jobs:
build:
name: Build Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: actions/setup-go@v3
with:
go-version: '1.22'
- name: Cache cargo registry
uses: actions/cache@v2
with:
path: juno/vm/rust/target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('juno/vm/rust/Cargo.lock') }

Check failure on line 27 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: 27, Col: 16): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
- name: Try make
run: |
make build
testing:
name: Build Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: 'reddio-com/itachi-testing'
submodules: 'recursive'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt