AccountView: set password in create_new_user #797
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: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: [stable, unstable, development-target] | |
| container: | |
| image: ghcr.io/elementary/docker:${{ matrix.version }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Dependencies | |
| run: | | |
| apt update | |
| apt install -y desktop-file-utils gettext meson libaccountsservice-dev libgtk-4-dev libgee-0.8-dev libgranite-7-dev libadwaita-1-dev libxkbregistry-dev libjson-glib-dev libpantheon-wayland-1-dev libpolkit-gobject-1-dev libpwquality-dev valac | |
| - name: Build | |
| run: | | |
| meson build | |
| ninja -C build | |
| lint: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: valalang/lint | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Lint | |
| run: io.elementary.vala-lint -d . |