diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index acde015..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,7 +0,0 @@ -jobs: - build: - docker: - - image: cimg/rust:1.52.0 - steps: - - checkout - - run: cargo test \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..71f674d --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,22 @@ +name: Test + +on: + push: + branches: + - ** + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Build + run: cargo build --verbose + + - name: Run tests + run: cargo test --verbose \ No newline at end of file diff --git a/README.md b/README.md index 8bae093..2b33f16 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # Das Grid -[![](https://circleci.com/gh/eduardonunesp/das-grid.svg?style=svg)](_) **Das Grid** is a 2D grid library which serves as fundamental building block for any 2D game built on the concept of grid