diff --git a/bibdesk2mdolab.bibtoolrsc b/.bibtoolrsc similarity index 100% rename from bibdesk2mdolab.bibtoolrsc rename to .bibtoolrsc diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..931989d --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @mdolab/bib_file_maintainers \ No newline at end of file diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..9ba5410 --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,21 @@ +name: test-bib + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install dependencies + run: | + sudo apt-get install bibtool -y + - name: Test formatting + run: | + bibtool -i mdolab.bib -o mdolab-formatted.bib -r .bibtoolrsc + diff mdolab.bib mdolab-formatted.bib +