Build and test #6426
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test | |
permissions: | |
contents: read | |
id-token: write | |
defaults: | |
run: | |
shell: bash | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '37 22 * * *' | |
jobs: | |
gha: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
#- macos-12 | |
#- macos-13 | |
#- macos-14 | |
#- macos-latest | |
#- ubuntu-20.04 | |
#- ubuntu-22.04 | |
#- ubuntu-24.04 | |
#- ubuntu-latest | |
#- windows-2019 | |
- windows-2022 | |
#- windows-latest | |
steps: | |
# actions/checkout MUST come before auth | |
- uses: actions/checkout@v4 | |
- name: Get and make oathtool | |
run: | | |
curl -O https://mirrors.ocf.berkeley.edu/nongnu/oath-toolkit/oath-toolkit-2.6.9.tar.gz | |
tar xvvf oath-toolkit-2.6.9.tar.gz | |
cd oath-toolkit-2.6.9 | |
./configure --disable-pam --disable-pskc --disable-dependency-tracking | |
make | |
make install | |