diff --git a/zig-ecs/.github/workflows/ci.yml b/zig-ecs/.github/workflows/ci.yml deleted file mode 100644 index 5043895..0000000 --- a/zig-ecs/.github/workflows/ci.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Workflow -on: [push] - -jobs: - test: - strategy: - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - runs-on: ${{matrix.os}} - steps: - - uses: actions/checkout@v2 - - uses: goto-bus-stop/setup-zig@v1 - with: - version: master - - run: zig fmt src - - run: zig fmt examples - - run: zig fmt tests - - run: zig fmt build.zig - - run: zig build test