Update i_sound.c #15
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: TiCS | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
TiCS: | |
name: TiCS | |
runs-on: ubuntu-latest | |
steps: | |
#- name: Build Env | |
# run: apt update && apt install -y --no-install-recommends apt-utils build-essential sudo git nodejs curl | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build project | |
run: | | |
apt install -y libx11-dev libxext-dev | |
cd linuxdoom-1.10 | |
mkdir linux | |
make | |
- name: TICS Client Analysis | |
uses: tiobe/tics-github-action@v2 | |
with: | |
projectName: auto | |
ticsConfiguration: 'https://testlab.tiobe.com/tiobeweb/releasetest/api/cfg?name=default' | |
installTics: true | |
recalc: 'ALL,GATE' | |
filelist: . | |
ticsAuthToken: ${{secrets.RELEASETESTTOKEN}} | |
githubToken: ${{secrets.GITHUB_TOKEN}} | |