Skip to content

Fix undefined behavior of RefMutContainer #33

Fix undefined behavior of RefMutContainer

Fix undefined behavior of RefMutContainer #33

Workflow file for this run

name: Test Automation
on:
pull_request:
branches: [ "main" ]
workflow_dispatch:
permissions:
contents: read
jobs:
test-rraft-py:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Set up pip and requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install protobuf compiler
run: |
sudo apt install -y protobuf-compiler
- name: Set up Rust toolchain
uses: actions-rs/cargo@v1
uses: actions-rs/toolchain@v1

Check failure on line 29 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test Automation

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 29, Col: 7): 'uses' is already defined .github/workflows/test.yml (Line: 33, Col: 7): Unexpected value 'run'
with:
toolchain: nightly
components: clippy
run: make install
- name: Build and Test
run: |
make test