Skip to content

Update enum-iterator requirement from 1.1 to 2.0 #62

Update enum-iterator requirement from 1.1 to 2.0

Update enum-iterator requirement from 1.1 to 2.0 #62

Workflow file for this run

name: tests
on:
push:
paths:
- '**/*.rs'
- '.github/workflows/tests.yml'
- 'Cargo.toml'
branches:
- main
pull_request:
paths:
- '**/*.rs'
- '.github/workflows/tests.yml'
- 'Cargo.toml'
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: "Checkout code"
uses: actions/checkout@v2
- name: "Install SDL2"
run: |
sudo apt update
sudo apt install -y libsdl2-dev
- name: "Install Rust toolchain"
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: clippy
- name: "Run tests"
run: make check