Skip to content

Add scanline rendering skeleton #32

Add scanline rendering skeleton

Add scanline rendering skeleton #32

Workflow file for this run

name: Build and test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install prerequisites
run: sudo apt-get -y install libsdl2-dev
- name: Fetch submodules
run: git submodule update --init --recursive
- name: Checkout souper_tests
run: git clone https://github.com/twvd/souper_tests.git ../souper_tests
- name: Code formatting check
run: cargo fmt --check
- name: Build
run: cargo build --verbose
- name: Build release
run: cargo build --verbose --release
- name: Run tests
run: cargo test --verbose