Skip to content

Rename examples to make them consistent #86

Rename examples to make them consistent

Rename examples to make them consistent #86

Workflow file for this run

on: [push, pull_request]
name: Cargo Build & Test
jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
defaults:
run:
working-directory: wii-ext
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose