File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 1
- name : build
1
+ name : ci
2
2
on : [push, workflow_dispatch]
3
3
4
4
jobs :
5
- build :
6
- name : lint, install and package on amd64/archlinux:base
5
+ ci :
6
+ name : CI on amd64/archlinux:base
7
7
runs-on : ubuntu-22.04
8
8
container : amd64/archlinux:base
9
9
steps :
10
10
- uses : actions/checkout@v4
11
11
- run : |
12
12
pacman -Syu --needed --noconfirm python-pipx python-wxpython
13
- pipx install hatch
14
- pipx ensurepath
13
+ pipx install --global hatch
15
14
name: Install dependencies
16
- # Use the full path because Hatch is not found for some reason.
17
- - run : ~/.local/bin/hatch fmt --check
15
+ - run : hatch fmt --check
18
16
name : Lint
19
- - run : ~/.local/bin/ hatch -vv env create dev
17
+ - run : hatch -vv env create dev
20
18
name : Create editable installation
21
- - run : ~/.local/bin/ hatch build
19
+ - run : hatch build
22
20
name : Package into tarball and wheel
You can’t perform that action at this time.
0 commit comments