gl33 0.2.1

Bindings to OpenGL 3.3 + GL_KHR_debug
Documentation

name: Rust

on: [push]

jobs:
  ci:
    runs-on: windows-latest
    strategy:
      matrix:
        rust:
          - stable
          - beta
          - nightly
          - 1.34.0  # MSRV

    steps:
    - uses: actions/checkout@v2

    - name: Test with no default features
      run: cargo test --no-default-features

    - name: Test
      run: cargo test

    - name: Test +track_caller
      run: cargo test --features="track_caller"