Added ability to view inventory of players within 100m radius #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Arma | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@master | |
- name: Lint (sqflint) | |
uses: arma-actions/sqflint@master | |
continue-on-error: true # No failure due to many false-positives | |
- name: Validate Config | |
run: python3 tools/config_style_checker.py | |
- name: Check for BOM | |
uses: arma-actions/bom-check@master | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@master | |
- name: Build using HEMTT | |
uses: arma-actions/hemtt@master | |
with: | |
command: build --release --ci | |
- name: Upload Artifact | |
uses: actions/upload-artifact@master | |
with: | |
name: wolf_logistics-${{ github.sha }}-nobin | |
path: releases/*.zip |