Migrate to aiscat decoder, slim Docker base, argparse CLI, metrics en… #104
This file contains hidden or 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
| on: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ['windows-latest', 'ubuntu-latest', 'macos-latest'] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.11 | |
| - run: pip install aiscat pyinstaller | |
| - run: pyinstaller --collect-all aiscat ais2adsb.py | |
| - run: ./dist/ais2adsb/ais2adsb --help | |
| - uses: actions/upload-artifact@v3 | |
| with: | |
| name: "AIS2ADSB ${{matrix.os}}" | |
| path: dist/* |