From: Aarni Koskela Date: Thu, 16 Jun 2022 05:29:29 +0000 (+0300) Subject: Add GitHub Actions workflow for building packages X-Git-Tag: v2.11.0~15^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34e724fd340d5e8eb1de97e2b638dadd028ef56a;p=thirdparty%2Fbabel.git Add GitHub Actions workflow for building packages --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..7c6a9907 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,25 @@ +name: CI +"on": + push: + branches: + - master + pull_request: + branches: + - master +jobs: + Build: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: "3.10" + cache: "pip" + cache-dependency-path: "**/setup.py" + - run: pip install build -e . + - run: make import-cldr + - run: python -m build + - uses: actions/upload-artifact@v3 + with: + name: dist + path: dist