Skip to content

Commit

Permalink
Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdaes committed Sep 10, 2024
1 parent 02923a2 commit 77725c7
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Test

on:
workflow_dispatch:

jobs:
test:

runs-on: windows-latest
permissions:
# required for all workflows
contents: write

steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install python
uses: actions/setup-python@v3
with:
python-version: 3.11
architecture: x86
- Prepare source tree
run: scons source
shell: cmd
- name: Build NVDA
run: scons launcher
shell: cmd
- name: Upload NVDA
uses: actions/upload-artifact@v4
with:
name: NVDA
path: output
2 changes: 1 addition & 1 deletion include/liblouis
Submodule liblouis updated 66 files
+2 −2 .github/workflows/check-format.yml
+3 −3 .github/workflows/check-table-license.yml
+2 −2 .github/workflows/cifuzz.yml
+5 −5 .github/workflows/codeql.yml
+2 −2 .github/workflows/distcheck.yml
+3 −3 .github/workflows/emscripten.yml
+6 −6 .github/workflows/fuzzing.yml
+3 −3 .github/workflows/macro.yml
+3 −3 .github/workflows/main.yml
+3 −3 .github/workflows/metadata.yml
+8 −8 .github/workflows/mingw.yml
+3 −3 .github/workflows/sanitizer.yml
+5 −5 .github/workflows/scorecards.yml
+63 −36 ANNOUNCEMENT
+0 −2 AUTHORS
+7 −66 NEWS
+2 −2 configure.ac
+218 −221 extra/generate-display-names/display-names
+3 −3 extra/generate-display-names/generate.c
+1 −1 extra/generate-display-names/go.mod
+2 −2 extra/generate-display-names/go.sum
+11 −10 liblouis/compileTranslationTable.c
+39 −40 liblouis/lou_backTranslateString.c
+7 −13 liblouis/lou_translateString.c
+2 −5 liblouis/metadata.c
+0 −3 tables/Makefile.am
+1 −1 tables/afr-za-g2.ctb
+0 −1 tables/es-chardefs.cti
+24 −101 tables/fi.utb
+1 −1 tables/grc-international-common.uti
+0 −54 tables/grc-international-en-composed.utb
+2 −4 tables/grc-international-en.utb
+0 −88 tables/hu-backtranslate-word-corrections.cti
+1 −100 tables/hu-exceptionwords.cti
+8 −1 tables/hu-hu-comp8.ctb
+1 −0 tables/hu-hu-g1_braille_input.cti
+3 −1 tables/hu-hu-g2.ctb
+3 −1 tables/hu.tbl
+0 −11,448 tables/ja-kantenji-ucs2.utb
+11,410 −5 tables/ja-kantenji.utb
+11 −11 tables/km-g1.utb
+5 −5 tables/my-g1.utb
+3,693 −3,693 tables/my-g2.ctb
+0 −5 tables/nl-print.dis
+3 −3 tables/th-g0.utb
+0 −367 tables/th-g1.utb
+1 −1 tables/vi-puncsdef.uti
+1 −4 tests/Makefile.am
+1 −3 tests/braille-specs/Makefile.am
+18 −0 tests/braille-specs/es-comp.yaml
+0 −675 tests/braille-specs/es-g0-g1.yaml
+9 −0 tests/braille-specs/es-g2.yaml
+0 −18 tests/braille-specs/fi_harness.yaml
+21 −28 tests/braille-specs/grc-international-common.yaml
+4 −17 tests/braille-specs/grc-international-composed.yaml
+4 −1 tests/braille-specs/grc-international-decomposed.yaml
+8 −383 tests/braille-specs/hu-hu-g1_dictionary_special_consonants.yaml
+1 −0 tests/braille-specs/ja-kantenji.yaml
+0 −29 tests/braille-specs/my-g2.yaml
+0 −235 tests/braille-specs/th-g1.yaml
+0 −3 tests/braille-specs/th.yaml
+0 −1 tests/yaml/Makefile.am
+0 −42 tests/yaml/match-vs-always.yaml
+10 −23 tools/brl_checks.c
+0 −4 tools/lou_checkyaml.c
+1 −1 windows/include/config.h

0 comments on commit 77725c7

Please sign in to comment.