Skip to content

merge develop into master #367

merge develop into master

merge develop into master #367

Workflow file for this run

name: Run tests with triqs
on: [push, pull_request]
jobs:
all-tests:
runs-on: ubuntu-latest
steps:
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "The ${{ github.repository }} repository has been cloned to the runner."
- name: pytest
run: |
export LOCAL_UID=$(id -u $USER)
export LOCAL_GID=$(id -g $USER)
echo "LOCAL_UID=${LOCAL_UID}" > .env
echo "LOCAL_GID=${LOCAL_GID}" >> .env
docker compose up -d dcoretest
- run: echo "This job's status is ${{ job.status }}."