diff --git a/.github/ISSUE_TEMPLATE/codebase_improvement.yml b/.github/ISSUE_TEMPLATE/codebase_improvement.yml index 8c651103..b38740f9 100644 --- a/.github/ISSUE_TEMPLATE/codebase_improvement.yml +++ b/.github/ISSUE_TEMPLATE/codebase_improvement.yml @@ -1,7 +1,6 @@ name: Codebase improvement description: Feedback on the codebase title: "[Enhancement]: " -labels: [ "enhancement" ] body: - type: textarea id: feedback diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index eb55b830..fa0bd0d6 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,7 +1,6 @@ name: Feature request description: Suggest a feature title: "[Feature]: " -labels: [ "feature" ] body: - type: textarea id: suggestion diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7dd07021..7de6f343 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,3 +62,14 @@ jobs: - name: Test run: sozo test -f projectile shell: bash + + hex-map: + needs: [check, build] + runs-on: ubuntu-latest + name: Test example hex map + steps: + - uses: actions/checkout@v4 + - uses: ./.github/actions/setup + - name: Test + run: sozo test -f hex_map + shell: bash