Skip to content

Commit

Permalink
Merge branch 'main' of github.com:royward/metta-wam
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy Ward committed Aug 20, 2024
2 parents b796e35 + 84cfbee commit 0258983
Show file tree
Hide file tree
Showing 31 changed files with 11,898 additions and 1,260 deletions.
42 changes: 34 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand Down Expand Up @@ -55,21 +55,21 @@ jobs:
- name: Upload JUnit XML Report
continue-on-error: true
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: junit-report
path: junit.xml

- name: Upload Standard HTML Report
continue-on-error: true
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: junit-standard-html-report
path: junit-standard-report.html

- name: Upload Matrix HTML Report
continue-on-error: true
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: junit-matrix-html-report
path: junit-matrix-report.html
Expand All @@ -85,7 +85,7 @@ jobs:

- name: Download Previous JUnit Results
continue-on-error: true
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: junit-report
path: previous-junit.xml
Expand All @@ -100,7 +100,7 @@ jobs:
- name: Upload JUnit Comparison Report
continue-on-error: true
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: junit-comparison-html-report
path: ./comparison-report
Expand All @@ -126,7 +126,7 @@ jobs:
- name: Upload Allure Report as Artifact
continue-on-error: true
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: allure-html-report
path: ./allure-report
Expand All @@ -140,3 +140,29 @@ jobs:
uses: hmarr/auto-approve-action@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Pages
uses: actions/configure-pages@v4

- name: Upload Allure Report as Pages Artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./allure-report

deploy-allure-report:
runs-on: ubuntu-latest
needs: generate-reports

permissions:
pages: write # Allow deployment to GitHub Pages
id-token: write

environment:
# environment created automatically by GitHub
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ ftp.flybase.net/**
.?*~/
.*/
*~
*.buffer.pl
*.metta.pl
.*
*.qlf
*.datalog
Expand Down
Loading

0 comments on commit 0258983

Please sign in to comment.