glam 0.32.1

A simple and fast 3D math library for games and graphics
Documentation
name: coverage
on: [push]
jobs:
  coverage:
    container:
      image: xd009642/tarpaulin:develop-nightly
      options: --security-opt seccomp=unconfined
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
        with:
          submodules: true

      - name: Update nightly
        run: rustup update nightly

      - name: Generate code coverage
        run: cargo +nightly tarpaulin --timeout 120 --out lcov --output-dir ./coverage

      - name: Upload to coveralls.io
        uses: coverallsapp/github-action@master
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}