diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml new file mode 100644 index 0000000..4926e4e --- /dev/null +++ b/.github/workflows/Build.yml @@ -0,0 +1,23 @@ +name: Buildable? + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: cargo-install + uses: baptiste0928/cargo-install@v2.1.0 + with: + crate: cargo-screeps +