Skip to content

Add commands: replay buffer status, last replay, save screenshot #96

Add commands: replay buffer status, last replay, save screenshot

Add commands: replay buffer status, last replay, save screenshot #96

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
# fmt:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Run clippy
# run: cargo fmt -- --check
# clippy:
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Install Rust
# run: |
# rustup update --no-self-update stable
# rustup component add clippy
# - name: Run clippy
# run: cargo clippy -- -D warnings
test:
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run tests
run: cargo test
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install cargo-tarpaulin
run: |
LINK="https://github.com/xd009642/tarpaulin/releases/download/0.18.5/cargo-tarpaulin-0.18.5-travis.tar.gz"
curl -L --output tarpaulin.tar.gz "$LINK"
tar -xzvf tarpaulin.tar.gz
chmod +x cargo-tarpaulin
- name: Run cargo-tarpaulin
run: ./cargo-tarpaulin tarpaulin --out Xml
- name: Upload to codecov.io
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: cobertura.xml