Skip to content

Commit

Permalink
Add Voxel, Chunk implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
martindale committed Apr 2, 2023
1 parent a13b6ae commit 4a8d92d
Show file tree
Hide file tree
Showing 11 changed files with 100,107 additions and 43,959 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Test
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
name: Run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Install Node.js on ${{ matrix.os }}
uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Generate coverage report
run: npm run report:coverage
- name: Send coverage report
uses: codecov/[email protected]
with:
directory: ./reports/
Loading

0 comments on commit 4a8d92d

Please sign in to comment.