Update CI scripts #44
Workflow file for this run
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: ci | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
test: | |
name: OTP ${{matrix.otp}} / rebar3 ${{matrix.rebar3}} / OS ${{matrix.os}} | |
strategy: | |
matrix: | |
os: ['ubuntu-22.04'] | |
otp: ['26.1', '25.3', '24.3'] | |
rebar: ['3.22.1'] | |
include: | |
- otp: '26.1' | |
os: 'windows-2022' | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{matrix.otp}} | |
rebar3-version: ${{matrix.rebar}} | |
- name: Restore _build | |
uses: actions/cache@v3 | |
with: | |
path: _build | |
key: _build-cache-for-os-${{runner.os}}-otp-${{steps.setup-beam.outputs.otp-version}}-rebar3-${{steps.setup-beam.outputs.rebar3-version}}-hash-${{hashFiles('rebar.lock')}} | |
- name: Restore rebar3's cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/rebar3 | |
key: rebar3-cache-for-os-${{runner.os}}-otp-${{steps.setup-beam.outputs.otp-version}}-rebar3-${{steps.setup-beam.outputs.rebar3-version}}-hash-${{hashFiles('rebar.lock')}} | |
- run: rebar3 as test get-deps | |
- run: rebar3 as test compile | |
- run: rebar3 as test ct | |
- run: rebar3 dialyzer | |
if: ${{ matrix.otp == '26.1' && matrix.os == 'ubuntu-22.04' }} | |
- run: rebar3 as test codecov analyze | |
if: ${{ matrix.otp == '26.1' && matrix.os == 'ubuntu-22.04' }} | |
- run: gcov -o c_src fast_pbkdf2 | |
if: ${{ matrix.otp == '26.1' && matrix.os == 'ubuntu-22.04' }} | |
- run: pip install --user codecov | |
if: ${{ matrix.otp == '26.1' && matrix.os == 'ubuntu-22.04' }} | |
- run: /home/runner/.local/bin/codecov | |
if: ${{ matrix.otp == '26.1' && matrix.os == 'ubuntu-22.04' }} |