summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2021-05-19 11:34:28 -0300
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2021-05-19 11:34:28 -0300
commit4cf35350a9d86c81d78acaed00e582ce045ccb3c (patch)
tree976a7c2333ed65da160aeb4d3e4ff86b3abe7f1b /.github
parent6b2a852d25ba0cfe5bd06bd00f32f6ccdf6314b7 (diff)
parent7de3c8757b191a403e90af439dcc9377911794d6 (diff)
downloadmullvadvpn-4cf35350a9d86c81d78acaed00e582ce045ccb3c.tar.xz
mullvadvpn-4cf35350a9d86c81d78acaed00e582ce045ccb3c.zip
Merge branch 'refactor-translations-converter'
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/translations-converter.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/translations-converter.yml b/.github/workflows/translations-converter.yml
new file mode 100644
index 0000000000..d9676f513a
--- /dev/null
+++ b/.github/workflows/translations-converter.yml
@@ -0,0 +1,24 @@
+name: Translations converter tool CI
+on:
+ # Run whenever a file that affects the translations converter tool is changed
+ push:
+ paths:
+ - .github/workflows/translations-converter.yml
+ - android/translations-converter/**
+ # Check if requested manually from the Actions tab
+ workflow_dispatch:
+jobs:
+ check-translations:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ - name: Install Rust
+ uses: ATiltedTree/setup-rust@v1.0.4
+ with:
+ rust-version: stable
+
+ - name: Build and test translations converter tool
+ working-directory: android/translations-converter
+ run: cargo test