Skip to content

time: Add README to explain the purpose of the time extension library. #334

time: Add README to explain the purpose of the time extension library.

time: Add README to explain the purpose of the time extension library. #334

Workflow file for this run

name: Build all packages
on: [push, pull_request]
env:
PACKAGE_INDEX_PATH: /tmp/micropython-lib-deploy
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Setup environment
run: source tools/ci.sh && ci_build_packages_setup
- name: Check manifest files
run: source tools/ci.sh && ci_build_packages_check_manifest
- name: Compile package index
run: source tools/ci.sh && ci_build_packages_compile_index
- name: Compile package examples
run: source tools/ci.sh && ci_build_packages_examples
- name: Publish packages for branch
if: vars.MICROPY_PUBLISH_MIP_INDEX && github.event_name == 'push' && ! github.event.deleted
run: source tools/ci.sh && ci_push_package_index
- name: Upload packages as artifact
uses: actions/upload-artifact@v3
with:
name: packages-${{ github.sha }}
path: ${{ env.PACKAGE_INDEX_PATH }}