feat: improvements for federated learning and QoL #27
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
Pre-Commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
- uses: pre-commit/[email protected] | |
Quality: | |
needs: Pre-Commit | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: ${{matrix.python-version}} | |
- name: Install Python Poetry | |
uses: abatilo/[email protected] | |
- name: Configure poetry | |
shell: bash | |
run: python -m poetry config virtualenvs.in-project true | |
- name: View poetry version | |
run: poetry --version | |
- name: Install dependencies | |
run: | | |
python -m poetry install | |
- name: Test | |
run: poetry run python3 -m unittest discover -v | |
Release: | |
needs: Quality | |
if: | | |
github.repository == 'autonlab/auton-survival' && | |
github.event_name == 'push' && | |
github.ref == 'refs/heads/master' && | |
!contains ( github.event.head_commit.message, 'chore(release)' ) | |
runs-on: ubuntu-latest | |
concurrency: release | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: 3.8 | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check release status | |
id: release-status | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
pip install python-semantic-release | |
if semantic-release --noop --strict version | |
then | |
echo "Releasing new version." | |
else | |
echo "Skipping release steps." | |
fi | |
- if: steps.release-status.outputs.released == 'true' | |
name: Release to GitHub | |
id: github-release | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
semantic-release version | |
git fetch --tags | |
for file in ./dist/** | |
do gh release upload "${{steps.release-status.outputs.tag}}" $file | |
done | |
- if: steps.release-status.outputs.released == 'true' | |
name: Release to Test PyPI | |
id: test-pypi-release | |
env: | |
TEST_PYPI_TOKEN: ${{ secrets.TEST_PYPI_TOKEN }} | |
run: | | |
poetry config repositories.test-pypi https://test.pypi.org/legacy/ | |
poetry config pypi-token.test-pypi $TEST_PYPI_TOKEN | |
poetry publish -r test-pypi -u __token__ | |
- if: steps.release-status.outputs.released == 'true' | |
name: Release to PyPI | |
id: pypi-release | |
env: | |
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
run: | | |
poetry config pypi-token.pypi $PYPI_TOKEN | |
poetry publish |