Skip to content
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.

Update README.md with link to new repository #86

Update README.md with link to new repository

Update README.md with link to new repository #86

Workflow file for this run

name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install libsdl2-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose