diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-09-02 11:29:54 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-09-02 11:29:54 +0200 |
| commit | 3ba4f6f6b94004bdaeae6579b99f0fe4725738a6 (patch) | |
| tree | 3cb5fee4e5a7525915fe82ef23219210601a9eaf /.gitlab-ci.yml | |
| parent | c73ebc1fbc4ccae6b2ddcedf529f4f65234bfc33 (diff) | |
Add ubuntu tests
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0006748..8ccbcb9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,4 +16,18 @@ debian: - pip install . script: - ./tests/run.py + +ubuntu: + image: "ubuntu:latest" + before_script: + - apt update && apt install -y python3 python3-pip python-is-python3 + - pip install numpy + - pip install build + - pip install virtualenv + - export PATH=${PATH}:${HOME}/.local/bin + - virtualenv myenv + - source myenv/bin/activate + - pip install . + script: + - ./tests/run.py |
