Skip to content

Commit 0efbca1

Browse files
committed
ci: switch from travis to Github actions
1 parent 4e43720 commit 0efbca1

3 files changed

Lines changed: 26 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
python-version: ["3.9", "3.11", "3.13"]
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Install uv
20+
uses: astral-sh/setup-uv@v5
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
24+
- name: Run tests
25+
run: uv run --with pytest pytest

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# mozconfigwrapper
22
[![PyPI version](https://badge.fury.io/py/mozconfigwrapper.svg)](https://badge.fury.io/py/mozconfigwrapper)
3+
[![CI](https://github.com/ahal/mozconfigwrapper/actions/workflows/ci.yml/badge.svg)](https://github.com/ahal/mozconfigwrapper/actions/workflows/ci.yml)
34

45
Mozconfigwrapper is a Python + shell tool to manager your [mozconfigs](https://firefox-source-docs.mozilla.org/setup/configuring_build_options.html).
56
Mozconfigwrapper hides all your mozconfigs away in a configurable directory (defaults to ~/.mozconfigs)

0 commit comments

Comments
 (0)