Log but don't raise when publish fails #17
Workflow file for this run
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
| name: ci | |
| on: | |
| push: | |
| paths-ignore: | |
| - "README.md" | |
| jobs: | |
| lint: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| - name: Install dev dependencies | |
| run: pip install -r dev-requirements.txt | |
| - name: Run linter | |
| run: ruff check | |
| test: | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Build micropython | |
| run: | | |
| git clone --depth 1 https://github.com/micropython/micropython.git | |
| cd micropython | |
| git submodule update --init | |
| make -C mpy-cross | |
| make -C ports/unix | |
| cp ports/unix/build-standard/micropython /usr/local/bin/ | |
| cd .. | |
| rm -rf micropython | |
| - name: Install test dependencies | |
| run: ./bin/setup | |
| - name: Install the package | |
| run: "micropython -m mip install github:${{ github.repository }}@${{ github.ref_name }}" | |
| - name: Run tests | |
| run: micropython -m unittest | |
| env: | |
| MICROPYPATH: "${{ github.workspace }}/tests/mocks:${{ github.workspace }}:.frozen:~/.micropython/lib:/usr/lib/micropython" |